Files
meatballcraft/scripts/BewitchmentPowerful.zs
2026-07-25 16:20:42 -05:00

22 lines
1.2 KiB
Plaintext

import scripts.enchantwrapper.EnchantUtil.EnchantMap;
import scripts.enchantwrapper.EnchantWrapper.SuperEnchantedItem;
val enchlistSpiderSuitWrapped as EnchantMap = EnchantMap()
.add("minecraft:protection",9)
.add("minecraft:unbreaking",5)
.add("enderio:repellent",10)
.add("minecraft:mending",1);
recipes.addShaped(SuperEnchantedItem(<erebus:spider_t_shirt>.withTag({display: {Name:"§6§oSomeone's Costume§r",Lore:["§d§oSuper-Enchanted§r"]}}), enchlistSpiderSuitWrapped).getItem(),
[[<bewitchment:hellhound_horn>, <bewitchment:demon_heart>, <bewitchment:hellhound_horn>],
[<contenttweaker:dragons_blood_plastic>, <erebus:spider_t_shirt>, <contenttweaker:dragons_blood_plastic>],
[<bewitchment:hellhound_horn>, <bewitchment:sigil_shrieking>, <bewitchment:hellhound_horn>]]);
recipes.addShaped(<contenttweaker:terrestrial_cauldron>,
[[<bewitchment:crying_scorned_bricks>, <bewitchment:mossy_scorned_bricks>, <bewitchment:crying_scorned_bricks>],
[<bewitchment:mossy_scorned_bricks>, <bewitchment:witches_cauldron>, <bewitchment:mossy_scorned_bricks>],
[<bewitchment:crying_scorned_bricks>, <bewitchment:mossy_scorned_bricks>, <bewitchment:crying_scorned_bricks>]]);