Advertisement
duhadventure

Untitled

Dec 10th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. val galaxy_set = mods.SetEffect.newSet()
  2. .withMainhand(<variedcommodities:phone>.withTag({display: {Lore: ["Overheats"], Name: "§8Galaxy Note 7 (Unstable)"}}))
  3. .addEffect(<potion:extrautils2:effect.xu2.greek.fire>.makePotionEffect(100, 0))
  4. .setName("Galaxy_Set_Name")
  5. .register();
  6.  
  7. val turtle_set = mods.SetEffect.newSet()
  8. .withMainhand(<variedcommodities:magic_wand>.withTag({display: {Lore: ["Increases defense but debuffs"], Name: "§2Wand of Turtle"}}))
  9. .addEffect(<potion:minecraft:slowness>.makePotionEffect(100, 9))
  10. .addEffect(<potion:minecraft:resistance>.makePotionEffect(100, 3))
  11. .addEffect(<potion:minecraft:mining_fatigue>.makePotionEffect(100, 9))
  12. .addEffect(<potion:potioncore:solid_core>.makePotionEffect(100, 1))
  13. .addEffect(<potion:minecraft:hunger>.makePotionEffect(100, 9))
  14. .addEffect(<potion:minecraft:blindness>.makePotionEffect(100, 0))
  15. .setName("Turtle_Set_Name")
  16. .register();
  17.  
  18. val eye_set = mods.SetEffect.newSet()
  19. .withMainhand(<cyberware:body_part>.withTag({display: {Lore: ["§c§lWhy would you do this?!"], Name: "§cEye of Cthulhu"}}))
  20. .addEffect(<potion:potioncore:perplexity>.makePotionEffect(100, 0))
  21. .addEffect(<potion:minecraft:blindness>.makePotionEffect(100, 0))
  22. .setName("Eye_Set_Name")
  23. .register();
  24.  
  25. val pandora_set = mods.SetEffect.newSet()
  26. .withMainhand(<props:props:281>.withTag({ench: [{lvl: 1 as short, id: 35 as short}], display: {Lore: ["DONT RIGHT CLICK OR IT WILL PLACE AND LOSE EFFECTS"], Name: "§dPandora's Music Box"}}))
  27. .addEffect(<potion:minecraft:luck>.makePotionEffect(100, 2))
  28. .addEffect(<potion:minecraft:unluck>.makePotionEffect(100, 2))
  29. .setName("Pandora_Set_Name")
  30. .register();
  31.  
  32. val link_set = mods.SetEffect.newSet()
  33. .withMainhand(<variedcommodities:ocarina>.withTag({display: {Lore: ["Moar tickrate!"], Name: "§bOcarina of Time"}}))
  34. .addEffect(<potion:minecraft:saturation>.makePotionEffect(100, 0))
  35. .addEffect(<potion:extraalchemy:effect.hurry>.makePotionEffect(100, 2))
  36. .setName("Link_Set_Name")
  37. .register();
  38.  
  39. val oar_set = mods.SetEffect.newSet()
  40. .withMainhand(<immersivepetroleum:upgrades:4>.withTag({display: {Lore: ["Oar-a Oar-a Oar-a Oar-a Oar-a Oar-a Oar-a!", "Is that a Jojo reference?"], Name: "§5?SAIL AWAY?"}}))
  41. .addEffect(<potion:minecraft:haste>.makePotionEffect(100, 2))
  42. .addEffect(<potion:minecraft:strength>.makePotionEffect(100, 2))
  43. .setName("Oar_Set_Name")
  44. .register();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement