Skip to content

Commit

Permalink
Extend Ordered Deconstruction
Browse files Browse the repository at this point in the history
Removed brick recipes because they're not really useful and added some more useful recipes instead.
  • Loading branch information
IcarussOne committed May 16, 2024
1 parent a9b2219 commit b5e4362
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,17 @@ public static void initCrucible() {
ThaumcraftApi.addCrucibleRecipe(new ResourceLocation("crimsonrevelations", "orderwool"),
new CrucibleRecipe("ORDERED_DECONSTRUCTION", new ItemStack(Items.STRING, 4, 0), "wool", new AspectList().add(Aspect.ORDER, 25)));

ThaumcraftApi.addCrucibleRecipe(new ResourceLocation("crimsonrevelations", "orderbrick"),
new CrucibleRecipe("ORDERED_DECONSTRUCTION", new ItemStack(Items.BRICK, 4, 0), new ItemStack(Blocks.BRICK_BLOCK), new AspectList().add(Aspect.ORDER, 25)));
ThaumcraftApi.addCrucibleRecipe(new ResourceLocation("crimsonrevelations", "orderglowstone"),
new CrucibleRecipe("ORDERED_DECONSTRUCTION", new ItemStack(Items.GLOWSTONE_DUST, 4, 0), new ItemStack(Blocks.GLOWSTONE), new AspectList().add(Aspect.ORDER, 25)));

ThaumcraftApi.addCrucibleRecipe(new ResourceLocation("crimsonrevelations", "ordernetherbrick"),
new CrucibleRecipe("ORDERED_DECONSTRUCTION", new ItemStack(Items.NETHERBRICK, 4, 0), new ItemStack(Blocks.NETHER_BRICK), new AspectList().add(Aspect.ORDER, 25)));
ThaumcraftApi.addCrucibleRecipe(new ResourceLocation("crimsonrevelations", "ordermagma"),
new CrucibleRecipe("ORDERED_DECONSTRUCTION", new ItemStack(Items.MAGMA_CREAM, 2, 0), new ItemStack(Blocks.MAGMA), new AspectList().add(Aspect.ORDER, 25)));

ThaumcraftApi.addCrucibleRecipe(new ResourceLocation("crimsonrevelations", "orderquartz"),
new CrucibleRecipe("ORDERED_DECONSTRUCTION", new ItemStack(Items.QUARTZ, 4, 0), "blockQuartz", new AspectList().add(Aspect.ORDER, 25)));

ThaumcraftApi.addCrucibleRecipe(new ResourceLocation("crimsonrevelations", "ordersandstone"),
new CrucibleRecipe("ORDERED_DECONSTRUCTION", new ItemStack(Blocks.SAND, 4, 0), "sandstone", new AspectList().add(Aspect.ORDER, 25)));

ThaumcraftApi.addCrucibleRecipe(new ResourceLocation("crimsonrevelations", "orderprismarine"),
new CrucibleRecipe("ORDERED_DECONSTRUCTION", new ItemStack(Items.PRISMARINE_SHARD, 4, 0), "blockPrismarine", new AspectList().add(Aspect.ORDER, 25)));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
"THEORY;ARTIFICE;1"
],
"required_item": [
"minecraft:iron_ingot",
"thaumcraft:fabric"
"crimsonrevelations:crimson_plate",
"crimsonrevelations:crimson_fabric"
],
"required_craft": [
"thaumcraft:banner_crimson_cult"
Expand Down Expand Up @@ -305,9 +305,10 @@
"text": "crimsonrevelations.research.ORDERED_DECONSTRUCTION.text.stage.1",
"recipes": [
"crimsonrevelations:orderwool",
"crimsonrevelations:orderbrick",
"crimsonrevelations:ordernetherbrick",
"crimsonrevelations:orderglowstone",
"crimsonrevelations:ordermagma",
"crimsonrevelations:orderquartz",
"crimsonrevelations:ordersandstone",
"crimsonrevelations:orderprismarine",
"crimsonrevelations:orderchorus"
]
Expand Down

0 comments on commit b5e4362

Please sign in to comment.