diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-08-12 17:26:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-12 17:26:01 -0700 |
commit | d9883945954a30e4b753ecbd5d807f4b6cd2a38a (patch) | |
tree | 093c45ab4de91a75d546f58a6672dfc72136677c /constants/script_func_constants.inc | |
parent | e005410884803f1ec8f5942bd0c8d2da5c2e29c8 (diff) |
More data dumping and some code cleaning (#46)
* more data dumping and some code cleaning
* split out cutscene scripts
* initial start at script conversion
* more script work
* use correct type
* clearer up struct field names
* split known scripts into seperate files
* no need to preproc pure ascii strings in debug
* more cutscene work
* split out personality test scripts
* solidify text macros and doc some dungeon fields
* more scripting work
Diffstat (limited to 'constants/script_func_constants.inc')
-rw-r--r-- | constants/script_func_constants.inc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/constants/script_func_constants.inc b/constants/script_func_constants.inc new file mode 100644 index 0000000..157153d --- /dev/null +++ b/constants/script_func_constants.inc @@ -0,0 +1,14 @@ +.set WAIT_START_FUNC, 0x03 +.set WAKEUP_FUNC, 0x20 +.set LOOK_AROUND_FUNC, 0x21 +.set JUMP_HAPPY_FUNC, 0x25 +.set JUMP_ANGRY_FUNC, 0x27 +.set NOTICE_FUNC, 0x28 +.set QUESTION_FUNC, 0x29 +.set SWEAT_FUNC, 0x2A +.set SHOCK_FUNC, 0x2B +.set SMILE_START_FUNC, 0x2E +.set SMILE_END_FUNC, 0x2F +.set INIT_SLEEP_FUNC, 0x35 +.set LIVES_WARP_ARRIVE_FUNC, 0x51 +.set LIVES_WARP_ARRIVE2_FUNC, 0x52 |