diff options
| author | Paul Gilbert | 2015-01-22 22:05:36 -0500 |
|---|---|---|
| committer | Paul Gilbert | 2015-01-22 22:05:36 -0500 |
| commit | 2b51d324f3cc2a58f2a703c23030ee19ba85836b (patch) | |
| tree | 4f1e71821433fb8f69654c5a899020cd3999f32e /engines/xeen/resources.cpp | |
| parent | b597d71bcdd7792df1cc53d8354f700b0dc4ab72 (diff) | |
| download | scummvm-rg350-2b51d324f3cc2a58f2a703c23030ee19ba85836b.tar.gz scummvm-rg350-2b51d324f3cc2a58f2a703c23030ee19ba85836b.tar.bz2 scummvm-rg350-2b51d324f3cc2a58f2a703c23030ee19ba85836b.zip | |
XEEN: Implemented dialogs for Who Will and YesNo
Diffstat (limited to 'engines/xeen/resources.cpp')
| -rw-r--r-- | engines/xeen/resources.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/engines/xeen/resources.cpp b/engines/xeen/resources.cpp index 085f84aa73..994762bf5b 100644 --- a/engines/xeen/resources.cpp +++ b/engines/xeen/resources.cpp @@ -68,6 +68,9 @@ const char *const OPTIONS_TITLE = const char *const THE_PARTY_NEEDS_REST = "\x0B""012The Party needs rest!"; +const char *const WHO_WILL = "\X03""c\X0B""000\x09""000%s\x0A\x0A" + "Who will\x0A%s?\x0A\x0B""055F1 - F%d"; + const char *const TERRAIN_TYPES[6] = { "town", "cave", "towr", "cstl", "dung", "scfi" }; @@ -85,6 +88,17 @@ const char *const SURFACE_NAMES[16] = { "space.srf" }; +const char *const WHO_ACTIONS[32] = { + "aSearch", "aOpen", "aDrink", "aMine", "aTouch", "aRead", "aLearn", "aTake", + "aBang", "aSteal", "aBribe", "aPay", "aSit", "aTry", "aTurn", "aBathe", + "aDestroy", "aPull", "aDescend", "aTossACoin", "aPray", "aJoin", "aAct", + "aPlay", "aPush", "aRub", "aPick", "aEat", "aSign", "aClose", "aLook", "aTry" +}; + +const char *const WHO_WILL_ACTIONS[4] = { + "Open Grate", "Open Door", "Open Scroll", "Select Char" +}; + const byte SYMBOLS[20][64] = { { // 0 0x00, 0x00, 0xA8, 0xA4, 0xA4, 0xA4, 0xA4, 0xA4, 0x00, 0xA8, 0x9E, 0x9C, 0x9C, 0x9E, 0x9E, 0x9E, |
