This commit is contained in:
sainagh
2024-08-18 18:25:41 -07:00
parent f38b745627
commit 0a09116c6e
1502 changed files with 56792 additions and 12704 deletions
+27 -3
View File
@@ -1,11 +1,21 @@
import mods.modularmachinery.RecipeBuilder;
import scripts.enchantwrapper.EnchantUtil.EnchantMap;
import scripts.enchantwrapper.EnchantWrapper.SuperEnchantedItem;
recipes.addShapeless(<contenttweaker:empowered_mazestone>,
[<twilightforest:mazebreaker_pickaxe>.reuse(),
<contenttweaker:fading_wool>,
<twilightforest:maze_stone>]);
val enclistMorningStarWrapped as EnchantMap = EnchantMap()
.add("minecraft:fire_aspect",5)
.add("minecraft:sharpness",20)
.add("minecraft:mending",1)
.add("minecraft:unbreaking",10);
val reci1 = RecipeBuilder.newBuilder("twiweap1","carminite_empowerer",1200);
reci1.addEnergyPerTickInput(15000);
reci1.addAspectInput("infernum",100);
@@ -14,9 +24,16 @@ reci1.addItemInput(<twilightforest:knightmetal_ingot>*16);
reci1.addItemInput(<twilightforest:twilight_log:3>*64);
reci1.addItemInput(<minecraft:ghast_tear>*16);
reci1.addItemInput(<minecraft:nether_star>);
reci1.addItemOutput(<twilightforest:block_and_chain>.withTag({ench: [{lvl: 5 as short, id: 20 as short}, {lvl: 20 as short, id: 16 as short}, {lvl: 1 as short, id: 70 as short}, {lvl: 10 as short, id: 34 as short}], RepairCost: 1, display: {Name: "§6§oMorning Star§r", Lore: ["§d§oSuper-Enchanted§r"]}}));
reci1.addItemOutput(SuperEnchantedItem(<twilightforest:block_and_chain>.withTag({display: {Name:"§6§oMorning Star§r",Lore:["§d§oSuper-Enchanted§r"]}}), enclistMorningStarWrapped).getItem());
reci1.build();
val enclistSavageAxeWrapped as EnchantMap = EnchantMap()
.add("minecraft:sharpness",20)
.add("minecraft:mending",1)
.add("minecraft:unbreaking",10)
.add("divinerpg:rive",4);
val reci2 = RecipeBuilder.newBuilder("twiweap2","carminite_empowerer",1200);
reci2.addEnergyPerTickInput(15000);
reci2.addAspectInput("bestia",100);
@@ -25,9 +42,16 @@ reci2.addItemInput(<twilightforest:carminite>*16);
reci2.addItemInput(<twilightforest:maze_stone:0>*64);
reci2.addItemInput(<minecraft:gold_ingot>*64);
reci2.addItemInput(<minecraft:nether_star>);
reci2.addItemOutput(<twilightforest:minotaur_axe>.withTag({ench: [{lvl: 20 as short, id: 16 as short}, {lvl: 1 as short, id: 70 as short}, {lvl: 10 as short, id: 34 as short},{lvl: 4 as short, id: 79 as short}], RepairCost: 1, display: {Name: "§6§oAxe of Savagery§r", Lore: ["§d§oSuper-Enchanted§r"]}}));
reci2.addItemOutput(SuperEnchantedItem(<twilightforest:minotaur_axe>.withTag({display: {Name:"§6§oAxe of Savagery§r",Lore:["§d§oSuper-Enchanted§r"]}}), enclistSavageAxeWrapped).getItem());
reci2.build();
val enclistBigBerthaWrapped as EnchantMap = EnchantMap()
.add("minecraft:sharpness",35)
.add("minecraft:mending",1)
.add("minecraft:unbreaking",10)
.add("minecraft:knockback",8);
val reci3 = RecipeBuilder.newBuilder("twiweap3","carminite_empowerer",1200);
reci3.addEnergyPerTickInput(15000);
reci3.addAspectInput("aversio",100);
@@ -36,7 +60,7 @@ reci3.addItemInput(<twilightforest:carminite>*16);
reci3.addItemInput(<twilightforest:castle_brick:0>*64);
reci3.addItemInput(<twilightforest:raven_feather>*32);
reci3.addItemInput(<minecraft:nether_star>);
reci3.addItemOutput(<twilightforest:giant_sword>.withTag({ench: [{lvl: 35 as short, id: 16 as short}, {lvl: 1 as short, id: 70 as short}, {lvl: 10 as short, id: 34 as short},{lvl: 8 as short, id: 19 as short}], RepairCost: 1, display: {Name: "§6§oBig Bertha§r", Lore: ["§d§oSuper-Enchanted§r"]}}));
reci3.addItemOutput(SuperEnchantedItem(<twilightforest:giant_sword>.withTag({display: {Name:"§6§oBig Bertha§r",Lore:["§d§oSuper-Enchanted§r"]}}), enclistBigBerthaWrapped).getItem());
reci3.build();
val reci4 = RecipeBuilder.newBuilder("twiweap4","carminite_empowerer",1200);