summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-30 21:16:14 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-30 21:16:14 -0300
commit07f06f07678e888500ecab629049d82429219a5c (patch)
treee02e556b92f0681e6c88fe86cd8254a16dc153ab
parent17e1e2211f56cb62e086c6cc12cd988ca09be9da (diff)
downloadclient-07f06f07678e888500ecab629049d82429219a5c.tar.gz
client-07f06f07678e888500ecab629049d82429219a5c.tar.bz2
client-07f06f07678e888500ecab629049d82429219a5c.tar.xz
client-07f06f07678e888500ecab629049d82429219a5c.zip
Outlines so the names are readable
-rw-r--r--game/gui/battle.rpy9
1 files changed, 6 insertions, 3 deletions
diff --git a/game/gui/battle.rpy b/game/gui/battle.rpy
index 3c0c685..40697d2 100644
--- a/game/gui/battle.rpy
+++ b/game/gui/battle.rpy
@@ -100,7 +100,8 @@ screen battle_mobs():
ymaximum 20
hbox:
add "gfx/gui/ele_%d.png" % en1["ele"]
- text " %s" % en1["name"]
+ text " %s" % en1["name"]:
+ outlines [(1, "#000", 0, 0)]
bar value en1["hp"] range en1["max_hp"]
# Enemy 2
@@ -114,7 +115,8 @@ screen battle_mobs():
ymaximum 20
hbox:
add "gfx/gui/ele_%d.png" % en2["ele"]
- text " %s" % en2["name"]
+ text " %s" % en2["name"]:
+ outlines [(1, "#000", 0, 0)]
bar value en2["hp"] range en2["max_hp"]
# Enemy 3
@@ -128,7 +130,8 @@ screen battle_mobs():
ymaximum 20
hbox:
add "gfx/gui/ele_%d.png" % en3["ele"]
- text " %s" % en3["name"]
+ text " %s" % en3["name"]:
+ outlines [(1, "#000", 0, 0)]
bar value en3["hp"] range en3["max_hp"]
#############################################################################