Advertisement
compdude5

Sample cloudy-sword class

May 14th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. "healer": {
  2.     "str": 6,
  3.     "dex": 8,
  4.     "hax": 9001,
  5.     "pls": 4,
  6.     "abilities": [
  7.         {
  8.             name: "Heal",
  9.             type: "ranged",
  10.             target: "ally",
  11.             range: 5,
  12.             effect: {
  13.                 type: "heal",
  14.                 power: 10
  15.             }
  16.         },
  17.         {
  18.             name: "Jump",
  19.             type: "ranged",
  20.             target: "tile",
  21.             range: 3,
  22.             effect: {
  23.                 type: "teleport"
  24.             }
  25.         }
  26.     ]
  27. }
  28.  
  29.  
  30. Format approximately like this but subject to change.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement