diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-07-12 19:16:49 -0700 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-07-12 19:16:49 -0700 |
commit | 4172c0c8129d4cef0db943f5d9e5cf9deb6947ff (patch) | |
tree | e223b0ab821a0a2fd210e3d904de84b59b02f623 | |
parent | 1bb9b7757cff27b086a16bf4ad926979146efaa4 (diff) | |
parent | 83e47ef0fac2127de0ff93a366f6bf80f49d3154 (diff) |
Merge pull request #157 from yenatch/overworld
overworld loop and movement
original-commit-id: bb8990dc3cb19787e08c29409cfc674e2478fbc9
-rw-r--r-- | chars.py | 1 | ||||
-rw-r--r-- | crystal.py | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -98,6 +98,7 @@ chars = { 0xE9: "&", 0xEA: "é", 0xEB: "→", + 0xEC: "▷", 0xED: "▶", 0xEE: "▼", 0xEF: "♂", @@ -1989,6 +1989,7 @@ movement_command_bases = { 0x3A: "remove_fixed_facing", 0x3B: "fix_facing", 0x3D: "hide_person", + 0x3E: "show_person", 0x45: "accelerate_last", 0x46: ["step_sleep", ["duration", DecimalParam]], 0x47: "step_end", @@ -2000,6 +2001,8 @@ movement_command_bases = { 0x4E: "skyfall", 0x4F: "step_wait5", + 0x53: "hide_emote", + 0x54: "show_emote", 0x55: ["step_shake", ["displacement", DecimalParam]], } |