Advertisement
BrannoDev

Vamp Clone: UpgradeDB Upgrade Const

Nov 24th, 2022 (edited)
1,564
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.17 KB | Source Code | 1 0
  1. const UPGRADES = {
  2. "icespear1": {
  3. "icon": WEAPON_PATH + "ice_spear.png",
  4. "displayname": "Ice Spear",
  5. "details": "A spear of ice is thrown at a random enemy",
  6. "level": "Level: 1",
  7. "prerequisite": [],
  8. "type": "weapon"
  9. },
  10. "icespear2": {
  11. "icon": WEAPON_PATH + "ice_spear.png",
  12. "displayname": "Ice Spear",
  13. "details": "An addition Ice Spear is thrown",
  14. "level": "Level: 2",
  15. "prerequisite": ["icespear1"],
  16. "type": "weapon"
  17. },
  18. "icespear3": {
  19. "icon": WEAPON_PATH + "ice_spear.png",
  20. "displayname": "Ice Spear",
  21. "details": "Ice Spears now pass through another enemy and do + 3 damage",
  22. "level": "Level: 3",
  23. "prerequisite": ["icespear2"],
  24. "type": "weapon"
  25. },
  26. "icespear4": {
  27. "icon": WEAPON_PATH + "ice_spear.png",
  28. "displayname": "Ice Spear",
  29. "details": "An additional 2 Ice Spears are thrown",
  30. "level": "Level: 4",
  31. "prerequisite": ["icespear3"],
  32. "type": "weapon"
  33. },
  34. "javelin1": {
  35. "icon": WEAPON_PATH + "javelin_3_new_attack.png",
  36. "displayname": "Javelin",
  37. "details": "A magical javelin will follow you attacking enemies in a straight line",
  38. "level": "Level: 1",
  39. "prerequisite": [],
  40. "type": "weapon"
  41. },
  42. "javelin2": {
  43. "icon": WEAPON_PATH + "javelin_3_new_attack.png",
  44. "displayname": "Javelin",
  45. "details": "The javelin will now attack an additional enemy per attack",
  46. "level": "Level: 2",
  47. "prerequisite": ["javelin1"],
  48. "type": "weapon"
  49. },
  50. "javelin3": {
  51. "icon": WEAPON_PATH + "javelin_3_new_attack.png",
  52. "displayname": "Javelin",
  53. "details": "The javelin will attack another additional enemy per attack",
  54. "level": "Level: 3",
  55. "prerequisite": ["javelin2"],
  56. "type": "weapon"
  57. },
  58. "javelin4": {
  59. "icon": WEAPON_PATH + "javelin_3_new_attack.png",
  60. "displayname": "Javelin",
  61. "details": "The javelin now does + 5 damage per attack and causes 20% additional knockback",
  62. "level": "Level: 4",
  63. "prerequisite": ["javelin3"],
  64. "type": "weapon"
  65. },
  66. "tornado1": {
  67. "icon": WEAPON_PATH + "tornado.png",
  68. "displayname": "Tornado",
  69. "details": "A tornado is created and random heads somewhere in the players direction",
  70. "level": "Level: 1",
  71. "prerequisite": [],
  72. "type": "weapon"
  73. },
  74. "tornado2": {
  75. "icon": WEAPON_PATH + "tornado.png",
  76. "displayname": "Tornado",
  77. "details": "An additional Tornado is created",
  78. "level": "Level: 2",
  79. "prerequisite": ["tornado1"],
  80. "type": "weapon"
  81. },
  82. "tornado3": {
  83. "icon": WEAPON_PATH + "tornado.png",
  84. "displayname": "Tornado",
  85. "details": "The Tornado cooldown is reduced by 0.5 seconds",
  86. "level": "Level: 3",
  87. "prerequisite": ["tornado2"],
  88. "type": "weapon"
  89. },
  90. "tornado4": {
  91. "icon": WEAPON_PATH + "tornado.png",
  92. "displayname": "Tornado",
  93. "details": "An additional tornado is created and the knockback is increased by 25%",
  94. "level": "Level: 4",
  95. "prerequisite": ["tornado3"],
  96. "type": "weapon"
  97. },
  98. "armor1": {
  99. "icon": ICON_PATH + "helmet_1.png",
  100. "displayname": "Armor",
  101. "details": "Reduces Damage By 1 point",
  102. "level": "Level: 1",
  103. "prerequisite": [],
  104. "type": "upgrade"
  105. },
  106. "armor2": {
  107. "icon": ICON_PATH + "helmet_1.png",
  108. "displayname": "Armor",
  109. "details": "Reduces Damage By an additional 1 point",
  110. "level": "Level: 2",
  111. "prerequisite": ["armor1"],
  112. "type": "upgrade"
  113. },
  114. "armor3": {
  115. "icon": ICON_PATH + "helmet_1.png",
  116. "displayname": "Armor",
  117. "details": "Reduces Damage By an additional 1 point",
  118. "level": "Level: 3",
  119. "prerequisite": ["armor2"],
  120. "type": "upgrade"
  121. },
  122. "armor4": {
  123. "icon": ICON_PATH + "helmet_1.png",
  124. "displayname": "Armor",
  125. "details": "Reduces Damage By an additional 1 point",
  126. "level": "Level: 4",
  127. "prerequisite": ["armor3"],
  128. "type": "upgrade"
  129. },
  130. "speed1": {
  131. "icon": ICON_PATH + "boots_4_green.png",
  132. "displayname": "Speed",
  133. "details": "Movement Speed Increased by 50% of base speed",
  134. "level": "Level: 1",
  135. "prerequisite": [],
  136. "type": "upgrade"
  137. },
  138. "speed2": {
  139. "icon": ICON_PATH + "boots_4_green.png",
  140. "displayname": "Speed",
  141. "details": "Movement Speed Increased by an additional 50% of base speed",
  142. "level": "Level: 2",
  143. "prerequisite": ["speed1"],
  144. "type": "upgrade"
  145. },
  146. "speed3": {
  147. "icon": ICON_PATH + "boots_4_green.png",
  148. "displayname": "Speed",
  149. "details": "Movement Speed Increased by an additional 50% of base speed",
  150. "level": "Level: 3",
  151. "prerequisite": ["speed2"],
  152. "type": "upgrade"
  153. },
  154. "speed4": {
  155. "icon": ICON_PATH + "boots_4_green.png",
  156. "displayname": "Speed",
  157. "details": "Movement Speed Increased an additional 50% of base speed",
  158. "level": "Level: 4",
  159. "prerequisite": ["speed3"],
  160. "type": "upgrade"
  161. },
  162. "tome1": {
  163. "icon": ICON_PATH + "thick_new.png",
  164. "displayname": "Tome",
  165. "details": "Increases the size of spells an additional 10% of their base size",
  166. "level": "Level: 1",
  167. "prerequisite": [],
  168. "type": "upgrade"
  169. },
  170. "tome2": {
  171. "icon": ICON_PATH + "thick_new.png",
  172. "displayname": "Tome",
  173. "details": "Increases the size of spells an additional 10% of their base size",
  174. "level": "Level: 2",
  175. "prerequisite": ["tome1"],
  176. "type": "upgrade"
  177. },
  178. "tome3": {
  179. "icon": ICON_PATH + "thick_new.png",
  180. "displayname": "Tome",
  181. "details": "Increases the size of spells an additional 10% of their base size",
  182. "level": "Level: 3",
  183. "prerequisite": ["tome2"],
  184. "type": "upgrade"
  185. },
  186. "tome4": {
  187. "icon": ICON_PATH + "thick_new.png",
  188. "displayname": "Tome",
  189. "details": "Increases the size of spells an additional 10% of their base size",
  190. "level": "Level: 4",
  191. "prerequisite": ["tome3"],
  192. "type": "upgrade"
  193. },
  194. "scroll1": {
  195. "icon": ICON_PATH + "scroll_old.png",
  196. "displayname": "Scroll",
  197. "details": "Decreases of the cooldown of spells by an additional 5% of their base time",
  198. "level": "Level: 1",
  199. "prerequisite": [],
  200. "type": "upgrade"
  201. },
  202. "scroll2": {
  203. "icon": ICON_PATH + "scroll_old.png",
  204. "displayname": "Scroll",
  205. "details": "Decreases of the cooldown of spells by an additional 5% of their base time",
  206. "level": "Level: 2",
  207. "prerequisite": ["scroll1"],
  208. "type": "upgrade"
  209. },
  210. "scroll3": {
  211. "icon": ICON_PATH + "scroll_old.png",
  212. "displayname": "Scroll",
  213. "details": "Decreases of the cooldown of spells by an additional 5% of their base time",
  214. "level": "Level: 3",
  215. "prerequisite": ["scroll2"],
  216. "type": "upgrade"
  217. },
  218. "scroll4": {
  219. "icon": ICON_PATH + "scroll_old.png",
  220. "displayname": "Scroll",
  221. "details": "Decreases of the cooldown of spells by an additional 5% of their base time",
  222. "level": "Level: 4",
  223. "prerequisite": ["scroll3"],
  224. "type": "upgrade"
  225. },
  226. "ring1": {
  227. "icon": ICON_PATH + "urand_mage.png",
  228. "displayname": "Ring",
  229. "details": "Your spells now spawn 1 more additional attack",
  230. "level": "Level: 1",
  231. "prerequisite": [],
  232. "type": "upgrade"
  233. },
  234. "ring2": {
  235. "icon": ICON_PATH + "urand_mage.png",
  236. "displayname": "Ring",
  237. "details": "Your spells now spawn an additional attack",
  238. "level": "Level: 2",
  239. "prerequisite": ["ring1"],
  240. "type": "upgrade"
  241. },
  242. "food": {
  243. "icon": ICON_PATH + "chunk.png",
  244. "displayname": "Food",
  245. "details": "Heals you for 20 health",
  246. "level": "N/A",
  247. "prerequisite": [],
  248. "type": "item"
  249. }
  250. }
  251.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement