summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-31 15:57:32 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-31 15:57:32 -0300
commite4fa27671cb76caf21f7f7e19cd74ed448310ec6 (patch)
tree46eb88e1f04734505da3f34be9fcf3b10d7215a2
parent6923983b2a13ca3b4fddbd0e14439844568e6c64 (diff)
downloadclient-e4fa27671cb76caf21f7f7e19cd74ed448310ec6.tar.gz
client-e4fa27671cb76caf21f7f7e19cd74ed448310ec6.tar.bz2
client-e4fa27671cb76caf21f7f7e19cd74ed448310ec6.tar.xz
client-e4fa27671cb76caf21f7f7e19cd74ed448310ec6.zip
Special items - like gold, fairies and mana eggs/orbs - are Job 6.
So disclaim "Special" instead of "???". PS. We still need a bit more tutorial-ish interactions in story.
-rw-r--r--game/01_init.rpy3
1 files changed, 3 insertions, 0 deletions
diff --git a/game/01_init.rpy b/game/01_init.rpy
index 58069b9..5e16c9c 100644
--- a/game/01_init.rpy
+++ b/game/01_init.rpy
@@ -101,6 +101,7 @@ init -3 python:
Job_Mage =3
Job_Archer =4
Job_Undefined2 =5
+ Job_Special =6
# IRC flags
IRC_AUTH_NONE =0
@@ -136,6 +137,8 @@ init -3 python:
return _("Wizard")
elif (JOB == Job_Archer):
return _("Ranger")
+ elif (JOB == Job_Special):
+ return _("Special")
else:
return _("???")