Advertisement
duhadventure

Untitled

Dec 9th, 2018
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.06 KB | None | 0 0
  1. import crafttweaker.data.IData;
  2.  
  3.  
  4. <minecraft:iron_helmet>.addTooltip(format.green("Set Bonus: Iron Skin"));
  5. <minecraft:iron_chestplate>.addTooltip(format.green("Set Bonus: Iron Skin"));
  6. <minecraft:iron_leggings>.addTooltip(format.green("Set Bonus: Iron Skin"));
  7. <minecraft:iron_boots>.addTooltip(format.green("Set Bonus: Iron Skin"));
  8. val iron_set = mods.SetEffect.newSet()
  9. .withHead(<minecraft:iron_helmet>)
  10. .withChest(<minecraft:iron_chestplate>)
  11. .withLegs(<minecraft:iron_leggings>)
  12. .withFeet(<minecraft:iron_boots>)
  13. .addEffect(<potion:potioncore:iron_skin>.makePotionEffect(100, 0))
  14. .setName("Iron_Set_Name")
  15. .register();
  16.  
  17. <minecraft:diamond_helmet>.addTooltip(format.green("Set Bonus: Diamond Skin"));
  18. <minecraft:diamond_chestplate>.addTooltip(format.green("Set Bonus: Diamond Skin"));
  19. <minecraft:diamond_leggings>.addTooltip(format.green("Set Bonus: Diamond Skin"));
  20. <minecraft:diamond_boots>.addTooltip(format.green("Set Bonus: Diamond Skin"));
  21. val diamond_set = mods.SetEffect.newSet()
  22. .withHead(<minecraft:diamond_helmet>)
  23. .withChest(<minecraft:diamond_chestplate>)
  24. .withLegs(<minecraft:diamond_leggings>)
  25. .withFeet(<minecraft:diamond_boots>)
  26. .addEffect(<potion:potioncore:diamond_skin>.makePotionEffect(100, 0))
  27. .setName("Diamond_Set_Name")
  28. .register();
  29.  
  30. <minecraft:leather_helmet>.addTooltip(format.green("Set Bonus: Speed"));
  31. <minecraft:leather_chestplate>.addTooltip(format.green("Set Bonus: Speed"));
  32. <minecraft:leather_leggings>.addTooltip(format.green("Set Bonus: Speed"));
  33. <minecraft:leather_boots>.addTooltip(format.green("Set Bonus: Speed"));
  34. val leather_set = mods.SetEffect.newSet()
  35. .withHead(<minecraft:leather_helmet>)
  36. .withChest(<minecraft:leather_chestplate>)
  37. .withLegs(<minecraft:leather_leggings>)
  38. .withFeet(<minecraft:leather_boots>)
  39. .addEffect(<potion:minecraft:speed>.makePotionEffect(100, 1))
  40. .setName("Leather_Set_Name")
  41. .register();
  42.  
  43. <thaumcraft:thaumium_helm>.addTooltip(format.green("Set Bonus: Magic Shielding"));
  44. <thaumcraft:thaumium_chest>.addTooltip(format.green("Set Bonus: Magic Shielding"));
  45. <thaumcraft:thaumium_legs>.addTooltip(format.green("Set Bonus: Magic Shielding"));
  46. <thaumcraft:thaumium_boots>.addTooltip(format.green("Set Bonus: Magic Shielding"));
  47. val thaumium_set = mods.SetEffect.newSet()
  48. .withHead(<thaumcraft:thaumium_helm>)
  49. .withChest(<thaumcraft:thaumium_chest>)
  50. .withLegs(<thaumcraft:thaumium_legs>)
  51. .withFeet(<thaumcraft:thaumium_boots>)
  52. .addEffect(<potion:potioncore:magic_shield>.makePotionEffect(100, 0))
  53. .setName("Thaumium_Set_Name")
  54. .register();
  55.  
  56. <aether_legacy:gravitite_helmet>.addTooltip(format.green("Set Bonus: Slow Fall"));
  57. <aether_legacy:gravitite_chestplate>.addTooltip(format.green("Set Bonus: Slow Fall"));
  58. <aether_legacy:gravitite_leggings>.addTooltip(format.green("Set Bonus: Slow Fall"));
  59. <aether_legacy:gravitite_boots>.addTooltip(format.green("Set Bonus: Slow Fall"));
  60. val gravity_set = mods.SetEffect.newSet()
  61. .withHead(<aether_legacy:gravitite_helmet>)
  62. .withChest(<aether_legacy:gravitite_chestplate>)
  63. .withLegs(<aether_legacy:gravitite_leggings>)
  64. .withFeet(<aether_legacy:gravitite_boots>)
  65. .addEffect(<potion:potioncore:slow_fall>.makePotionEffect(100, 0))
  66. .setName("Gravity_Set_Name")
  67. .register();
  68.  
  69. <aether_legacy:phoenix_helmet>.addTooltip(format.green("Set Bonus: Fire Resistance"));
  70. <aether_legacy:phoenix_chestplate>.addTooltip(format.green("Set Bonus: Fire Resistance"));
  71. <aether_legacy:phoenix_leggings>.addTooltip(format.green("Set Bonus: Fire Resistance"));
  72. <aether_legacy:phoenix_boots>.addTooltip(format.green("Set Bonus: Fire Resistance"));
  73. val pheo_set = mods.SetEffect.newSet()
  74. .withHead(<aether_legacy:phoenix_helmet>)
  75. .withChest(<aether_legacy:phoenix_chestplate>)
  76. .withLegs(<aether_legacy:phoenix_leggings>)
  77. .withFeet(<aether_legacy:gravitite_boots>)
  78. .addEffect(<potion:minecraft:fire_resistance>.makePotionEffect(100, 0))
  79. .setName("Pheo_Set_Name")
  80. .register();
  81.  
  82. <aether_legacy:valkyrie_helmet>.addTooltip(format.green("Set Bonus: Battle Angel"));
  83. <aether_legacy:valkyrie_helmet>.addShiftTooltip(format.blue("Battle Angel: Speed, Resistance, Regen, and Reach"));
  84. <aether_legacy:valkyrie_chestplate>.addTooltip(format.green("Set Bonus: Battle Angel"));
  85. <aether_legacy:valkyrie_chestplate>.addShiftTooltip(format.blue("Battle Angel: Speed, Resistance, Regen, and Reach"));
  86. <aether_legacy:valkyrie_leggings>.addTooltip(format.green("Set Bonus: Battle Angel"));
  87. <aether_legacy:valkyrie_leggings>.addShiftTooltip(format.blue("Battle Angel: Speed, Resistance, Regen, and Reach"));
  88. <aether_legacy:valkyrie_boots>.addTooltip(format.green("Set Bonus: Battle Angel"));
  89. <aether_legacy:valkyrie_boots>.addShiftTooltip(format.blue("Battle Angel: Speed, Resistance, Regen, and Reach"));
  90. val valk_set = mods.SetEffect.newSet()
  91. .withHead(<aether_legacy:valkyrie_helmet>)
  92. .withChest(<aether_legacy:valkyrie_chestplate>)
  93. .withLegs(<aether_legacy:valkyrie_leggings>)
  94. .withFeet(<aether_legacy:valkyrie_boots>)
  95. .addEffect(<potion:minecraft:regeneration>.makePotionEffect(100, 1))
  96. .addEffect(<potion:minecraft:resistance>.makePotionEffect(100, 0))
  97. .addEffect(<potion:minecraft:speed>.makePotionEffect(100, 2))
  98. .addEffect(<potion:potioncore:reach>.makePotionEffect(100, 0))
  99. .setName("Valk_Set_Name")
  100. .register();
  101.  
  102. <twilightforest:knightmetal_helmet>.addTooltip(format.green("Set Bonus: Strength"));
  103. <twilightforest:knightmetal_chestplate>.addTooltip(format.green("Set Bonus: Strength"));
  104. <twilightforest:knightmetal_leggings>.addTooltip(format.green("Set Bonus: Strength"));
  105. <twilightforest:knightmetal_boots>.addTooltip(format.green("Set Bonus: Strength"));
  106. val knight_set = mods.SetEffect.newSet()
  107. .withHead(<twilightforest:knightmetal_helmet>)
  108. .withChest(<twilightforest:knightmetal_chestplate>)
  109. .withLegs(<twilightforest:knightmetal_leggings>)
  110. .withFeet(<twilightforest:knightmetal_boots>)
  111. .addEffect(<potion:minecraft:strength>.makePotionEffect(100, 1))
  112. .setName("Knight_Set_Name")
  113. .register();
  114.  
  115. val beta_set = mods.SetEffect.newSet()
  116. .withHead(<variedcommodities:x407_head>.withTag({ench: [{lvl: 3, id: 0}], Unbreakable: 1, display: {Lore: ["Thank you for testing!", "§aSet Bonus: Speed & Iron Skin"], Name: "§1Beta Tester Helmet"}}))
  117. .withChest(<variedcommodities:x407_chest>.withTag({ench: [{lvl: 3, id: 0}], Unbreakable: 1, display: {Lore: ["Thank you for testing!", "§aSet Bonus: Speed & Iron Skin"], Name: "§1Beta Tester Chestplate"}}))
  118. .withLegs(<variedcommodities:x407_legs>.withTag({ench: [{lvl: 3, id: 0}], Unbreakable: 1, display: {Lore: ["Thank you for testing!", "§aSet Bonus: Speed & Iron Skin"], Name: "§1Beta Tester Leggings"}}))
  119. .withFeet(<variedcommodities:x407_boots>.withTag({ench: [{lvl: 3, id: 0}], Unbreakable: 1, display: {Lore: ["Thank you for testing!", "§aSet Bonus: Speed & Iron Skin"], Name: "§1Beta Tester Boots"}}))
  120. .addEffect(<potion:potioncore:iron_skin>.makePotionEffect(100, 0))
  121. .addEffect(<potion:minecraft:speed>.makePotionEffect(100, 1))
  122. .setName("Beta_Set_Name")
  123. .register();
  124.  
  125. val love_set = mods.SetEffect.newSet()
  126. .withMainhand(<variedcommodities:ring>)
  127. .addParticle("heart", 0, 3, 0, 1, 4, 1, 0, -1, 0, 0, -1, 0, -0.2, 0.2, 3)
  128. .setName("Love_Set_Name")
  129. .register();
  130.  
  131. val galaxy_set = mods.SetEffect.newSet()
  132. .withMainhand(<variedcommodities:phone>.withTag({RepairCost: 0, display: {Lore: ["Periodically explodes"], Name: "§8Galaxy Note 7 (Unstable)"}}))
  133. .addEffect(<potion:potioncore:explode>.makePotionEffect(100, 0))
  134. .setName("Galaxy_Set_Name")
  135. .register();
  136.  
  137. val turtle_set = mods.SetEffect.newSet()
  138. .withMainhand(<variedcommodities:magic_wand>.withTag({RepairCost: 0, display: {Lore: ["Increases defense but debuffs"], Name: "§2Wand of Turtle"}}))
  139. .addEffect(<potion:minecraft:slowness>.makePotionEffect(100, 9))
  140. .addEffect(<potion:minecraft:resistance>.makePotionEffect(100, 3))
  141. .addEffect(<potion:mining_fatigue>.makePotionEffect(100, 9))
  142. .addEffect(<potion:potioncore:solid_core>.makePotionEffect(100, 1))
  143. .addEffect(<potion:minecraft:hunger>.makePotionEffect(100, 9))
  144. .addEffect(<potion:minecraft:blindness>.makePotionEffect(100, 0))
  145. .setName("Turtle_Set_Name")
  146. .register();
  147.  
  148. val eye_set = mods.SetEffect.newSet()
  149. .withMainhand(<cyberware:body_part>.withTag({RepairCost: 0, display: {Lore: ["§c§lWhy would you do this?!"], Name: "§cEye of Cthulhu"}}))
  150. .addEffect(<potion:potioncore:perplexity>.makePotionEffect(100, 0))
  151. .addEffect(<potion:minecraft:blindness>.makePotionEffect(100, 0))
  152. .setName("Eye_Set_Name")
  153. .register();
  154.  
  155. val pandora_set = mods.SetEffect.newSet()
  156. .withMainhand(<props:props:281>.withTag({ench: [{lvl: 1 as short, id: 21 as short}], RepairCost: 0, display: {Lore: ["DONT RIGHT CLICK OR IT WILL PLACE AND LOSE EFFECTS"], Name: "§dPandora's Music Box"}}))
  157. .addEffect(<potion:minecraft:luck>.makePotionEffect(100, 2))
  158. .addEffect(<potion:minecraft:unluck>.makePotionEffect(100, 2))
  159. .setName("Pandora_Set_Name")
  160. .register();
  161.  
  162. val link_set = mods.SetEffect.newSet()
  163. .withMainhand(<variedcommodities:ocarina>.withTag({RepairCost: 0, display: {Lore: ["Moar tickrate!"], Name: "§bOcarina of Time"}}))
  164. .addEffect(<potion:minecraft:saturation>.makePotionEffect(100, 0))
  165. .addEffect(<potion:extraalchemy:effect.hurry>.makePotionEffect(100, 2))
  166. .setName("Link_Set_Name")
  167. .register();
  168.  
  169. val oar_set = mods.SetEffect.newSet()
  170. .withMainhand(<immersivepetroleum:upgrades:4>.withTag({RepairCost: 0, display: {Lore: ["Oar-a Oar-a Oar-a Oar-a Oar-a Oar-a Oar-a!", "Is that a f****** Jojo reference?"], Name: "§5「SAIL AWAY」"}}))
  171. .addEffect(<potion:minecraft:haste>.makePotionEffect(100, 2))
  172. .addEffect(<potion:minecraft:strength>.makePotionEffect(100, 2))
  173. .setName("Oar_Set_Name")
  174. .register();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement