generated from FabricMC/fabric-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06ec108
commit 6ce223e
Showing
60 changed files
with
963 additions
and
146 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
{ | ||
"block.alchemist.transmutation_circle": "Transmutation Circle", | ||
"item.alchemist.aeternalis_fuel": "Aeternalis Fuel", | ||
"item.alchemist.alchemical_coal": "Alchemical Coal", | ||
"item.alchemist.catalytic_lens": "Catalytic Lens", | ||
"item.alchemist.chalk": "Chalk", | ||
"item.alchemist.coal_coke": "Coal Coke", | ||
"item.alchemist.dark_matter": "Dark Matter", | ||
"item.alchemist.destruction_catalyst": "Destruction Catalyst", | ||
"item.alchemist.evertide_gem": "Evertide Gem", | ||
"item.alchemist.iron_band": "Iron Band", | ||
"item.alchemist.mobius_fuel": "Mobius Fuel", | ||
"item.alchemist.philosophers_stone": "Philosophers Stone", | ||
"item.alchemist.red_matter": "Red Matter", | ||
"item.alchemist.swiftwolfs_rending_gale": "Swiftwolfs Rending Gale", | ||
"itemGroup.alchemist": "Alchemist", | ||
"key.alchemist.empower": "Empower", | ||
"key.categories.alchemist": "Alchemist" | ||
"item.alchemist.volcanite_gem": "Volcanite Gem", | ||
"itemGroup.alchemist": "Alchemist" | ||
} |
32 changes: 32 additions & 0 deletions
32
...in/generated/data/alchemist/advancements/recipes/misc/aeternalis_fuel_to_mobius_fuel.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,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_philosophers_stone": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "alchemist:philosophers_stone" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "alchemist:aeternalis_fuel_to_mobius_fuel" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"has_philosophers_stone" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"alchemist:aeternalis_fuel_to_mobius_fuel" | ||
] | ||
} | ||
} |
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
32 changes: 32 additions & 0 deletions
32
...main/generated/data/alchemist/advancements/recipes/misc/coal_coke_to_alchemical_coal.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,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_philosophers_stone": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "alchemist:philosophers_stone" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "alchemist:coal_coke_to_alchemical_coal" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"has_philosophers_stone" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"alchemist:coal_coke_to_alchemical_coal" | ||
] | ||
} | ||
} |
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
54 changes: 54 additions & 0 deletions
54
src/main/generated/data/alchemist/advancements/recipes/misc/cobblestone.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,54 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_lava_bucket": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "minecraft:lava_bucket" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_philosophers_stone": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "alchemist:philosophers_stone" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "minecraft:cobblestone" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
}, | ||
"has_water_bucket": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "minecraft:water_bucket" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"has_lava_bucket", | ||
"has_water_bucket", | ||
"has_philosophers_stone" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"minecraft:cobblestone" | ||
] | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
src/main/generated/data/alchemist/advancements/recipes/misc/dark_matter.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,43 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_mobius_fuel": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "alchemist:mobius_fuel" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_netherite_block": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "minecraft:netherite_block" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "alchemist:dark_matter" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"has_mobius_fuel", | ||
"has_netherite_block" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"alchemist:dark_matter" | ||
] | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
...in/generated/data/alchemist/advancements/recipes/misc/mobius_fuel_to_aeternalis_fuel.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,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_philosophers_stone": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "alchemist:philosophers_stone" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "alchemist:mobius_fuel_to_aeternalis_fuel" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"has_philosophers_stone" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"alchemist:mobius_fuel_to_aeternalis_fuel" | ||
] | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
src/main/generated/data/alchemist/advancements/recipes/misc/obsidian.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,54 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_lava_bucket": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "minecraft:lava_bucket" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_philosophers_stone": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "alchemist:philosophers_stone" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "minecraft:obsidian" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
}, | ||
"has_water_bucket": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "minecraft:water_bucket" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"has_lava_bucket", | ||
"has_water_bucket", | ||
"has_philosophers_stone" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"minecraft:obsidian" | ||
] | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
src/main/generated/data/alchemist/advancements/recipes/misc/red_matter.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,43 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_aeternalis_fuel": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "alchemist:aeternalis_fuel" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_dark_matter": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "alchemist:dark_matter" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "alchemist:red_matter" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"has_dark_matter", | ||
"has_aeternalis_fuel" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"alchemist:red_matter" | ||
] | ||
} | ||
} |
Oops, something went wrong.