Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. #define diceywastelands_equipment()
  2. return [
  3. {
  4. name: "Spectral Charge",
  5. description: "Do [] damage",
  6. extendeddescription: "Inflict 2 Radiation",
  7. size: 1,
  8. floor: -1,
  9. scripts: ["attack:8|inflict", "RADIATION&3"],
  10. scripts_initvar: [],
  11. slots: ["COUNTDOWN"],
  12. countdown: 9,
  13. color: "GREEN",
  14. onupgrade: "upgrade",
  15. onweaken: "downgrade",
  16. cast_direction: 1,
  17. uses: 0,
  18. onceperbattle: 0
  19. }
  20. ]
  21.  
  22. #define diceywastelands_enemies()
  23. return [
  24. {
  25. name: "Ghost Guardian",
  26. level: 1,
  27. rarity: 1,
  28. sprite: sprGhostGuardianIdle,
  29. voice: sndExploGuardianHurt,
  30. hp: 60,
  31. dice: 0,
  32. lastwords: "EHHHHH",
  33. equipment: [
  34. {
  35. name: "Spectral Charge",
  36. row: 0,
  37. column: 0
  38. }
  39. ],
  40. attributes: ["getdice"]
  41. }
  42. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement