Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "goblin": {
  3.         "name": "Goblin",
  4.         "components": ["enemy","ai","input","collision","position","sprite","stats"],
  5.         "stats": {
  6.             "health": [2,3],
  7.             "attack": [1,3],
  8.             "ranged": 0,
  9.             "armour": 2,           
  10.         },
  11.         "ai": "default_enemy_ai",
  12.         "sprite": "units/goblins/spearman.png",
  13.         "area": [0,0,71,71],
  14.     },
  15.     "golem": {
  16.         "name": "Golem",
  17.         "components": ["enemy","ai","input","collision","position","sprite","stats"],
  18.         "stats": {
  19.             "health": 15,
  20.             "attack": 8,
  21.             "ranged": 0,
  22.             "armour": 10,          
  23.         },
  24.         "ai": "default_enemy_ai",
  25.         "sprite": "images/golem.png",
  26.         "area": [0,0,71,71],
  27.     },
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement