« get me outta code hell

Aqua line of actions - csb-game - Pixelly spin-off of the Command Synergy Battle system used in Final Fantasy XIII
summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2018-08-16 17:05:52 -0300
committerFlorrie <towerofnix@gmail.com>2018-08-16 17:05:52 -0300
commita358132379b3034242fd4dbb82bb5fe50e4062d1 (patch)
treeaa1209ca1d1f66e92746c54bc33bdd849f5a4b50
parent8f0d0cd3def9a59241e10679c38badfb2a99646b (diff)
Aqua line of actions
-rw-r--r--index.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/index.js b/index.js
index 2a2f074..f54e41f 100644
--- a/index.js
+++ b/index.js
@@ -23,7 +23,11 @@ const actionDatabase = {
   blizzara: {id: 'blizzara', chain: 'blizz', label: 'Blizzara', size: 2, target: 'enemy', color: '#AAF', damage: 30, stun: 0.35},
   blizzaga: {id: 'blizzaga', chain: 'blizz', label: 'Blizzaga', size: 3, target: 'enemy', color: '#AAF', damage: 45, stun: 0.5},
 
-  manasvinSwipe: {id: 'manasvinSwipe', label: 'Swipe', size: 3, target: 'enemy', color: '#CCC', damage: 75, stun: 1.25},
+  aqua: {id: 'aqua',     chain: 'aqua', label: 'Aqua',   size: 1, target: 'enemy', color: '#33F', damage: 30, stun: 0},
+  aquara: {id: 'aquara', chain: 'aqua', label: 'Aquara', size: 2, target: 'enemy', color: '#33F', damage: 60, stun: 0},
+  aquaga: {id: 'aquaga', chain: 'aqua', label: 'Aquaga', size: 3, target: 'enemy', color: '#33F', damage: 90, stun: 0},
+
+  manasvinSwipe: {id: 'manasvinSwipe', label: 'Swipe', size: 3, target: 'enemy', color: '#CCC', damage: 125, stun: 1.25},
 }
 
 class Sprite {
@@ -1174,10 +1178,10 @@ const battle = new Battle({
   teamData: [
     {characterData: [
       {x: -70, y: 200, name: 'Ren', hp: 400, maxHP: 400, knownActions: ['fire', 'fira', 'firaga', 'blizz', 'blizzara', 'cure']},
-      {x: -85, y: 210, name: 'Fie', hp: 375, maxHP: 375, knownActions: ['fire', 'fira', 'blizz', 'blizzara', 'blizzaga']}
+      {x: -85, y: 210, name: 'Fie', hp: 375, maxHP: 375, knownActions: ['fire', 'blizz', 'blizzara', 'blizzaga', 'aqua', 'aquara']}
     ]},
     {characterData: [
-      {x: 70, y: 200, name: 'Manasvin Warmech', hp: 700, maxHP: 700, knownActions: ['firaga', 'manasvinSwipe']}
+      {x: 70, y: 200, name: 'Manasvin Warmech', hp: 700, maxHP: 700, knownActions: ['aqua', 'aquaga', 'manasvinSwipe']}
     ]}
   ]
 })