summaryrefslogtreecommitdiff
path: root/game/gui/battle.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'game/gui/battle.rpy')
-rw-r--r--game/gui/battle.rpy13
1 files changed, 12 insertions, 1 deletions
diff --git a/game/gui/battle.rpy b/game/gui/battle.rpy
index f43ca65..d2f7f6d 100644
--- a/game/gui/battle.rpy
+++ b/game/gui/battle.rpy
@@ -390,7 +390,18 @@ screen battle():
button:
text _("I'm ready"):
outlines [(1,"#333",0,0)]
- action Return()
+ action Return(ACT_TURN)
+ showif not btl_ready and Player["quest"] >= 5:
+ hbox:
+ xanchor 1.0
+ yanchor 0.0
+ xpos config.screen_width-32
+ ypos 96
+ imagebutton:
+ insensitive "gfx/gui/summon_none.png"
+ idle "gfx/gui/summon_idle.png"
+ hover "gfx/gui/summon_hover.png"
+ action ifte(Battle["bp"] > 10, Return(ACT_SUMMON), None)