diff options
Diffstat (limited to 'src/game/text.cpp')
-rw-r--r-- | src/game/text.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/game/text.cpp b/src/game/text.cpp index 00441f8..3da39ff 100644 --- a/src/game/text.cpp +++ b/src/game/text.cpp @@ -29,6 +29,9 @@ static std::string get_english(index_t index) case SAY_MOVING: return "On my way."; + case SAY_PANIC: + return "I'm not getting paid enough for this."; + case UNIT_NAME_SPIDER: return "Spider"; @@ -56,6 +59,15 @@ static std::string get_english(index_t index) case UNIT_DAMAGE: return "deals damage"; + case UNIT_SAVING_THROW_WILLPOWER: + return "makes a saving throw for willpower"; + + case UNIT_SAVING_THROW_SUCCESS: + return "success"; + + case UNIT_SAVING_THROW_FAILURE: + return "failure"; + default: abort(); } @@ -82,6 +94,9 @@ static std::string get_polish(index_t index) case SAY_MOVING: return "Jestem w drodze."; + case SAY_PANIC: + return "Za mało mi za to płacą."; + case UNIT_NAME_SPIDER: return "Pająk"; @@ -109,6 +124,15 @@ static std::string get_polish(index_t index) case UNIT_DAMAGE: return "zadaje obrażenia"; + case UNIT_SAVING_THROW_WILLPOWER: + return "wykonuje rzut obronny na siłę woli"; + + case UNIT_SAVING_THROW_SUCCESS: + return "sukces"; + + case UNIT_SAVING_THROW_FAILURE: + return "porażka"; + default: abort(); } |