Advertisement
rubixcuber

Untitled

Dec 3rd, 2020
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. new Effect("Give Star", "star"),
  2. new Effect("Take Star", "starn"),
  3. new Effect("Give Hearts", "hearts", new[] {"quantity99"}),
  4. new Effect("Take Hearts", "heartsn", new[] {"quantity99"}),
  5.  
  6. new Effect("Increase Score", "scoreup"),
  7. new Effect("Decrease Score", "scoredown"),
  8.  
  9. //new Effect("Next Fight", "next"),
  10. new Effect("Next Song", "song"),
  11. new Effect("Play a Jingle", "jingle"),
  12.  
  13. new Effect("Round", "round", ItemKind.Folder),
  14. new Effect("Lengthen Round", "timedown", "round"),
  15. new Effect("Shorten Round", "timeup", "round"),
  16. new Effect("End Round", "timeend", "round"),
  17. new Effect("Next Round", "roundup", "round"),
  18. new Effect("Previous Round", "rounddown", "round"),
  19. new Effect("Restart Fight", "restart", "round"),
  20.  
  21. new Effect("Mac's Health", "mach", ItemKind.Folder),
  22. new Effect("Heal Mac - Small", "heals", "mach"),
  23. new Effect("Heal Mac - Medium", "healm", "mach"),
  24. new Effect("Heal Mac - Large", "heall", "mach"),
  25. new Effect("Heal Mac - Full", "healf", "mach"),
  26.  
  27. new Effect("Hurt Mac - Small", "hurts", "mach"),
  28. new Effect("Hurt Mac - Medium","hurtm", "mach"),
  29. new Effect("Hurt Mac - Large", "hurtl", "mach"),
  30. new Effect("Hurt Mac - Set to 1 HP", "hurtf", "mach"),
  31.  
  32. new Effect("Opponent's Health", "opph", ItemKind.Folder),
  33. new Effect("Heal Opponent - Small", "healos", "opph"),
  34. new Effect("Heal Opponent - Medium", "healom", "opph"),
  35. new Effect("Heal Opponent - Large", "healol", "opph"),
  36. new Effect("Heal Opponent - Full", "healof", "opph"),
  37.  
  38. new Effect("Hurt Opponent - Small", "hurtos", "opph"),
  39. new Effect("Hurt Opponent - Medium","hurtom", "opph"),
  40. new Effect("Hurt Opponent - Large", "hurtol", "opph"),
  41. new Effect("Hurt Opponent - Set to 1 HP", "hurtof", "opph"),
  42.  
  43. new Effect("Invert D-Pad (30 seconds)", "invertdpad"),
  44. new Effect("OHKO (15 seconds)", "ohko"),
  45. new Effect("Invincibility (30 seconds)", "invul"),
  46. new Effect("Infinite Stamina (30 seconds)", "stamina"),
  47. new Effect("Defenseless (15 seconds)", "nododge"),
  48. new Effect("Pacifist (15 seconds)", "nopunch"),
  49. new Effect("Fast Countdowns (60 seconds)", "countfast"),
  50. new Effect("Slow Countdowns (60 seconds)", "countslow"),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement