diff options
| author | 2024-01-09 19:37:28 +0100 | |
|---|---|---|
| committer | 2024-01-09 19:37:28 +0100 | |
| commit | 4606c536a6260477870426234f748067240de3d1 (patch) | |
| tree | 52ecd35ab0a51dd84bbebb675f5433a85166b132 /src/main/resources/data | |
| parent | Replace ItemMixin.java with proper ItemTooltipCallback usage. (diff) | |
| download | mc-eris-alchemy-4606c536a6260477870426234f748067240de3d1.tar.gz mc-eris-alchemy-4606c536a6260477870426234f748067240de3d1.tar.xz mc-eris-alchemy-4606c536a6260477870426234f748067240de3d1.zip | |
Added Alchemical Chest.
Diffstat (limited to 'src/main/resources/data')
3 files changed, 53 insertions, 0 deletions
diff --git a/src/main/resources/data/eris_alchemy/loot_tables/blocks/alchemical_chest.json b/src/main/resources/data/eris_alchemy/loot_tables/blocks/alchemical_chest.json new file mode 100644 index 0000000..a552e23 --- /dev/null +++ b/src/main/resources/data/eris_alchemy/loot_tables/blocks/alchemical_chest.json | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | { | ||
| 2 | "type": "minecraft:block", | ||
| 3 | "pools": [{ | ||
| 4 | "rolls": 1, | ||
| 5 | "entries": [{ | ||
| 6 | "type": "minecraft:item", | ||
| 7 | "name": "eris_alchemy:alchemical_chest" | ||
| 8 | }], | ||
| 9 | "conditions": [{ | ||
| 10 | "condition": "minecraft:survives_explosion" | ||
| 11 | }] | ||
| 12 | }] | ||
| 13 | } \ No newline at end of file | ||
diff --git a/src/main/resources/data/eris_alchemy/recipes/alchemical_chest.json b/src/main/resources/data/eris_alchemy/recipes/alchemical_chest.json new file mode 100644 index 0000000..7c97900 --- /dev/null +++ b/src/main/resources/data/eris_alchemy/recipes/alchemical_chest.json | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | { | ||
| 2 | "type": "crafting_shaped", | ||
| 3 | "pattern": [ | ||
| 4 | "123", | ||
| 5 | "SDS", | ||
| 6 | "ICI" | ||
| 7 | ], | ||
| 8 | "key": { | ||
| 9 | "1": { | ||
| 10 | "item": "eris_alchemy:low_covalence_dust" | ||
| 11 | }, | ||
| 12 | "2": { | ||
| 13 | "item": "eris_alchemy:medium_covalence_dust" | ||
| 14 | }, | ||
| 15 | "3": { | ||
| 16 | "item": "eris_alchemy:high_covalence_dust" | ||
| 17 | }, | ||
| 18 | "S": { | ||
| 19 | "item": "minecraft:stone" | ||
| 20 | }, | ||
| 21 | "D": { | ||
| 22 | "item": "minecraft:diamond" | ||
| 23 | }, | ||
| 24 | "I": { | ||
| 25 | "item": "minecraft:iron_ingot" | ||
| 26 | }, | ||
| 27 | "C": { | ||
| 28 | "item": "minecraft:chest" | ||
| 29 | } | ||
| 30 | }, | ||
| 31 | "result": { | ||
| 32 | "item": "eris_alchemy:alchemical_chest" | ||
| 33 | } | ||
| 34 | } \ No newline at end of file | ||
diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json new file mode 100644 index 0000000..27c0b6d --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | { | ||
| 2 | "replace": false, | ||
| 3 | "values": [ | ||
| 4 | "eris_alchemy:alchemical_chest" | ||
| 5 | ] | ||
| 6 | } \ No newline at end of file | ||