Skip to content

Commit

Permalink
Add meteor boots recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
IcarussOne committed Sep 26, 2024
1 parent 50a3a53 commit f02f96c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
11 changes: 11 additions & 0 deletions src/main/java/mod/icarus/crimsonrevelations/init/CRRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -352,5 +352,16 @@ public static void initInfusion() {
Items.GHAST_TEAR,
ThaumcraftApiHelper.makeCrystal(Aspect.WATER, 1),
ThaumcraftApiHelper.makeCrystal(Aspect.WATER, 1)));
ThaumcraftApi.addInfusionCraftingRecipe(new ResourceLocation(NewCrimsonRevelations.MODID, "meteor_boots"),
new InfusionRecipe("CR_METEOR_BOOTS", new ItemStack(CRItems.meteorBoots), 4,
new AspectList().add(Aspect.MOTION, 100).add(Aspect.FIRE, 50).add(Aspect.FLIGHT, 100).add(Aspect.ENTROPY, 50),
new ItemStack(ItemsTC.travellerBoots),
BlocksTC.crystalFire,
Blocks.OBSIDIAN,
Blocks.OBSIDIAN,
Blocks.OBSIDIAN,
Items.MAGMA_CREAM,
Items.FIRE_CHARGE,
BlocksTC.crystalEntropy));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -526,16 +526,18 @@
"required_item": [
"thaumcraft:crystal_essence;1;{Aspects:[{amount:1,key:'ignis'}]}",
"thaumcraft:crystal_essence;1;{Aspects:[{amount:1,key:'perditio'}]}",
"minecraft:fire_charge;3"
"minecraft:fire_charge",
"minecraft:magma_cream"
],
"required_craft": [
"minecraft:fire_charge"
"minecraft:fire_charge",
"minecraft:magma_cream"
]
},
{
"text": "crimsonrevelations.research.meteor_boots.stage.1",
"recipes": [
"crimsonrevelations:bone_bow"
"crimsonrevelations:meteor_boots"
]
}
]
Expand Down

0 comments on commit f02f96c

Please sign in to comment.