2014-11-15 01:03:41 +00:00
|
|
|
GAME = 3
|
2019-12-14 19:34:55 +00:00
|
|
|
include defconv.inc
|
2020-01-18 20:43:21 +00:00
|
|
|
|
|
|
|
PLAYER_COUNT = 2
|
|
|
|
|
2019-11-23 20:28:21 +00:00
|
|
|
include th03/mem.inc
|
2019-12-28 20:20:48 +00:00
|
|
|
include th03/gaiji/gaiji.inc
|
2019-09-23 15:52:53 +00:00
|
|
|
include th03/math/randring.inc
|
2018-09-11 17:34:19 +00:00
|
|
|
include th03/hardware/input.inc
|
2019-12-01 15:32:22 +00:00
|
|
|
include th03/chars/chars.inc
|
2020-01-18 20:43:21 +00:00
|
|
|
include th02/score.inc
|
2020-02-19 16:45:19 +00:00
|
|
|
|
|
|
|
KM_KEY_KEY = 0
|
|
|
|
KM_JOY_KEY = 1
|
|
|
|
KM_KEY_JOY = 2
|
|
|
|
|
|
|
|
VS_1P_CPU = 0
|
|
|
|
VS_1P_2P = 1
|
|
|
|
VS_CPU_CPU = 2
|
|
|
|
|
|
|
|
GM_NONE = 0
|
|
|
|
GM_STORY = 1
|
|
|
|
GM_DEMO = 7Fh
|
|
|
|
GM_VS = 80h
|
|
|
|
|
|
|
|
STAGE_NONE = -1
|
|
|
|
STAGE_ALL = 99
|
|
|
|
STAGE_COUNT = 9
|
|
|
|
|
|
|
|
CREDIT_LIVES = 2
|
|
|
|
|
|
|
|
DEMO_COUNT = 4
|
|
|
|
|
|
|
|
resident_t struc
|
|
|
|
id db 11 dup(?)
|
|
|
|
rank db ?
|
|
|
|
RESIDENT_playchar_paletted db PLAYER_COUNT dup(?)
|
|
|
|
RESIDENT_is_cpu db PLAYER_COUNT dup(?)
|
|
|
|
rand dd ?
|
|
|
|
db ?
|
|
|
|
bgm_mode db ?
|
|
|
|
key_mode db ?
|
|
|
|
pid_winner db ?
|
|
|
|
score_last db PLAYER_COUNT dup(SCORE_DIGITS dup(?))
|
|
|
|
game_mode db ?
|
|
|
|
story_opponents db STAGE_COUNT dup (?)
|
|
|
|
db ?
|
|
|
|
story_stage db ?
|
|
|
|
story_lives db ?
|
|
|
|
show_score_menu db ?
|
|
|
|
rem_credits db ?
|
|
|
|
op_skip_animation db ?
|
|
|
|
skill db ?
|
|
|
|
demo_num db ?
|
|
|
|
resident_t ends
|