« get me outta code hell

Misc. scenario tweaks - csb-game - Pixelly spin-off of the Command Synergy Battle system used in Final Fantasy XIII
summary refs log tree commit diff
path: root/index.js
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2018-08-19 14:22:39 -0300
committerFlorrie <towerofnix@gmail.com>2018-08-19 14:22:39 -0300
commitfde565cc07d6d4d459bf49906b8038fdaba7c584 (patch)
tree7cead71fbb0e82797e19e57a599fb2d466702066 /index.js
parent791d8c4fac6990f76d48db911ad1d80fe6c54a56 (diff)
Misc. scenario tweaks
Diffstat (limited to 'index.js')
-rw-r--r--index.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/index.js b/index.js
index be34775..a57f8af 100644
--- a/index.js
+++ b/index.js
@@ -1175,7 +1175,7 @@ class BattleCamera extends Camera {
   constructor() {
     super()
 
-    this.battlefieldCenterX = 20
+    this.battlefieldCenterX = 40
     this.battlefieldCenterY = 220
   }
 
@@ -1272,17 +1272,17 @@ class SlideacrossMessage {
 const battle = new Battle({
   teamData: [
     {characterData: [
-      {x: -75, y: 190, name: 'Ren', hp: 400, maxHP: 400, knownActions: ['fire', 'fira', 'firaga', 'blizz', 'blizzara', 'cure']},
-      {x: -95, y: 225, name: 'Fie', hp: 375, maxHP: 375, knownActions: ['fire', 'blizz', 'blizzara', 'blizzaga', 'aqua', 'aquara']}
+      {x: -55, y: 190, name: 'Ren', hp: 600, maxHP: 600, knownActions: ['fire', 'fira', 'firaga', 'blizz', 'blizzara', 'cure']},
+      {x: -75, y: 225, name: 'Fie', hp: 475, maxHP: 475, knownActions: ['fire', 'blizz', 'blizzara', 'blizzaga', 'aqua', 'aquara']}
     ]},
     {characterData: [
-      {x: 100, y: 200, aiID: 'manasvinWarmech', name: 'Manasvin Warmech', hp: 1600, maxHP: 1600, knownActions: ['aqua', 'aquaga', 'manasvinSwipe', 'manasvinRecover']}
+      {x: 80, y: 200, aiID: 'manasvinWarmech', name: 'Manasvin Warmech', hp: 1600, maxHP: 1600, knownActions: ['aqua', 'aquaga', 'manasvinSwipe', 'manasvinRecover']}
     ]}
   ]
 })
 
 battle.teams[0].characters[0].atbBar.segmentCount = 4
-battle.teams[0].characters[1].atbBar.segmentCount = 4
+battle.teams[0].characters[1].atbBar.segmentCount = 5
 battle.teams[1].characters[0].image.src = 'img/warmech.png'
 
 const camera = battle.camera