diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-31 15:57:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-31 15:57:32 -0300 |
commit | e4fa27671cb76caf21f7f7e19cd74ed448310ec6 (patch) | |
tree | 46eb88e1f04734505da3f34be9fcf3b10d7215a2 /game | |
parent | 6923983b2a13ca3b4fddbd0e14439844568e6c64 (diff) | |
download | client-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.
Diffstat (limited to 'game')
-rw-r--r-- | game/01_init.rpy | 3 |
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 _("???") |