summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--game/gui/battle.rpy14
1 files changed, 7 insertions, 7 deletions
diff --git a/game/gui/battle.rpy b/game/gui/battle.rpy
index 2090894..9531169 100644
--- a/game/gui/battle.rpy
+++ b/game/gui/battle.rpy
@@ -45,7 +45,7 @@ init python:
# Check if you asked for a skill
if (drop.drag_name == "Skill"):
renpy.notify("You can't use a skill!")
- drags[0].snap(0, 30, delay=0.1)
+ drags[0].snap(0, 48, delay=0.1)
#use_sphere[idn]=AP_SKILL
return
@@ -53,12 +53,12 @@ init python:
if (drop.drag_name == "Sphere"):
if (Battle["spheres"][idn]):
# Mark to use the sphere - if it exists!
- drags[0].snap(0, 60, delay=0.1)
+ drags[0].snap(0, 96, delay=0.1)
use_sphere[idn]=AP_SPHERE
return
else:
renpy.notify("You can't use a sphere!")
- drags[0].snap(0, 30, delay=0.1)
+ drags[0].snap(0, 48, delay=0.1)
return
return
@@ -226,7 +226,7 @@ screen battle():
dragged combat_action
else:
draggable False
- ypos 30
+ ypos 48
# The action areas
drag:
drag_name "Skill"
@@ -268,7 +268,7 @@ screen battle():
dragged combat_action
else:
draggable False
- ypos 30
+ ypos 48
drag:
drag_name "Skill"
child At("gfx/actionarea.png", party2)
@@ -308,7 +308,7 @@ screen battle():
dragged combat_action
else:
draggable False
- ypos 30
+ ypos 48
drag:
drag_name "Skill"
child At("gfx/actionarea.png", party3)
@@ -348,7 +348,7 @@ screen battle():
dragged combat_action
else:
draggable False
- ypos 30
+ ypos 48
drag:
drag_name "Skill"
child At("gfx/actionarea.png", party4)