-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alpha-0.3 - Tweaked Aluminum, Lead, Tin, Uranium, Platinum and Sulfur Pickaxe Tags (thanks for the feedback) - Added NEEDS_STONE_TOOL Block Tag - Tweaked Raw Zinc, Raw Platinum, Raw Lead, Steel ingot, Cobalt ingot, Platinum ingot, Aluminum ingot, Brass ingot, Lumium ingot, Lead ingot, Tin ingot, Raw tin - Added Obsidian Ore (can spawn all over the nether and close to lava lakes or under them)
- Loading branch information
Showing
43 changed files
with
229 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 5 additions & 4 deletions
9
src/generated/resources/.cache/474f4b2eac39f892f2cd7ba756fe752766f56205
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// 1.21.1 2024-12-03T23:42:20.8609334 Tags for minecraft:block mod id eternalores | ||
395e57ec1ea9eb25294bc315812157006b865bba data/minecraft/tags/block/mineable/pickaxe.json | ||
5e28a27c841a1ca5ab67fc4048a07de9568f1b40 data/minecraft/tags/block/needs_diamond_tool.json | ||
eb69d555414aa1d4cf29d18569e4ca2b28cf8549 data/minecraft/tags/block/needs_iron_tool.json | ||
// 1.21.1 2024-12-05T01:56:43.8824351 Tags for minecraft:block mod id eternalores | ||
ced3233662f4ce0e6fb448bed11b449eb1591228 data/minecraft/tags/block/mineable/pickaxe.json | ||
dda35b02a812d61136fd5028bfca73f3d01995c2 data/minecraft/tags/block/needs_diamond_tool.json | ||
49bd4188e03286d367752d469cb6024a47ca4723 data/minecraft/tags/block/needs_iron_tool.json | ||
37ecc7c3d0bad87b4d47d2bf363e8a46900ee7fa data/minecraft/tags/block/needs_stone_tool.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/generated/resources/assets/eternalores/blockstates/obsidian_ore_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "eternalores:block/obsidian_ore_block" | ||
} | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/block/obsidian_ore_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "minecraft:block/cube_all", | ||
"textures": { | ||
"all": "eternalores:block/obsidian_ore_block" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/eternalores/models/item/obsidian_ore_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"parent": "eternalores:block/obsidian_ore_block" | ||
} |
58 changes: 58 additions & 0 deletions
58
src/generated/resources/data/eternalores/loot_table/blocks/obsidian_ore_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"bonus_rolls": 0.0, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:alternatives", | ||
"children": [ | ||
{ | ||
"type": "minecraft:item", | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:match_tool", | ||
"predicate": { | ||
"predicates": { | ||
"minecraft:enchantments": [ | ||
{ | ||
"enchantments": "minecraft:silk_touch", | ||
"levels": { | ||
"min": 1 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
], | ||
"name": "eternalores:obsidian_ore_block" | ||
}, | ||
{ | ||
"type": "minecraft:item", | ||
"functions": [ | ||
{ | ||
"add": false, | ||
"count": { | ||
"type": "minecraft:uniform", | ||
"max": 2.0, | ||
"min": 1.0 | ||
}, | ||
"function": "minecraft:set_count" | ||
}, | ||
{ | ||
"enchantment": "minecraft:fortune", | ||
"formula": "minecraft:ore_drops", | ||
"function": "minecraft:apply_bonus" | ||
} | ||
], | ||
"name": "eternalores:gem_obsidian_shard" | ||
} | ||
] | ||
} | ||
], | ||
"rolls": 1.0 | ||
} | ||
], | ||
"random_sequence": "eternalores:blocks/obsidian_ore_block" | ||
} |
6 changes: 6 additions & 0 deletions
6
...generated/resources/data/eternalores/neoforge/biome_modifier/add_nether_obsidian_ore.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "neoforge:add_features", | ||
"biomes": "#minecraft:is_nether", | ||
"features": "eternalores:obsidian_ore_placed", | ||
"step": "underground_ores" | ||
} |
18 changes: 18 additions & 0 deletions
18
...generated/resources/data/eternalores/worldgen/configured_feature/nether_obsidian_ore.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "minecraft:ore", | ||
"config": { | ||
"discard_chance_on_air_exposure": 0.0, | ||
"size": 12, | ||
"targets": [ | ||
{ | ||
"state": { | ||
"Name": "eternalores:obsidian_ore_block" | ||
}, | ||
"target": { | ||
"block": "minecraft:netherrack", | ||
"predicate_type": "minecraft:block_match" | ||
} | ||
} | ||
] | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
src/generated/resources/data/eternalores/worldgen/placed_feature/obsidian_ore_placed.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"feature": "eternalores:nether_obsidian_ore", | ||
"placement": [ | ||
{ | ||
"type": "minecraft:count", | ||
"count": 12 | ||
}, | ||
{ | ||
"type": "minecraft:in_square" | ||
}, | ||
{ | ||
"type": "minecraft:height_range", | ||
"height": { | ||
"type": "minecraft:uniform", | ||
"max_inclusive": { | ||
"absolute": 128 | ||
}, | ||
"min_inclusive": { | ||
"absolute": -64 | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "minecraft:biome" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/generated/resources/data/minecraft/tags/block/needs_stone_tool.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"values": [ | ||
"eternalores:aluminum_ore_block", | ||
"eternalores:deepslate_aluminum_ore_block", | ||
"eternalores:tin_ore_block", | ||
"eternalores:deepslate_tin_ore_block", | ||
"eternalores:sulfur_ore_block", | ||
"eternalores:deepslate_sulfur_ore_block" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.