diff options
Diffstat (limited to 'tools/script_extractor.py')
-rw-r--r-- | tools/script_extractor.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/script_extractor.py b/tools/script_extractor.py index fd1028c..776d45f 100644 --- a/tools/script_extractor.py +++ b/tools/script_extractor.py @@ -233,7 +233,7 @@ def createList(): # this is a func just so all this can go at the bottom ("Func_cf53", "w", DO_NOT_QUIT,""), # more complex behavior too (jumping) ("Func_cf7b", "", DO_NOT_QUIT,""), ("ScriptCommand_JumpIfEnoughCardsOwned", "wj", DO_NOT_QUIT,"jump_if_enough_cards_owned"), - ("ScriptCommand_JumpBasedOnFightingClubPupilStatus", "jjjj", DO_NOT_QUIT,""), + ("ScriptCommand_JumpBasedOnFightingClubPupilStatus", "jjjjj", DO_NOT_QUIT,"fight_club_pupil_jump"), ("Func_cfc6", "b", DO_NOT_QUIT,""), ("Func_cfd4", "", DO_NOT_QUIT,""), ("Func_d00b", "", DO_NOT_QUIT,""), # includes something with random and extra data @@ -307,12 +307,12 @@ def createList(): # this is a func just so all this can go at the bottom ("ScriptCommand_JumpIfFlagEqual", "fbj", DO_NOT_QUIT,"jump_if_flag_equal"), ("ScriptCommand_JumpIfFlagNotEqual", "fbj", DO_NOT_QUIT,"jump_if_flag_not_equal"), ("ScriptCommand_JumpIfFlagNotLessThan", "fbj", DO_NOT_QUIT,"jump_if_flag_not_less_than"), - ("ScriptCommand_JumpIfFlagLessThan", "fbj", DO_NOT_QUIT,""), - ("ScriptCommand_MaxOutFlagValue", "f", DO_NOT_QUIT,""), - ("ScriptCommand_ZeroOutFlagValue", "f", DO_NOT_QUIT,""), - ("ScriptCommand_JumpIfFlagNonzero2", "fj", DO_NOT_QUIT,""), - ("ScriptCommand_JumpIfFlagZero2", "fj", DO_NOT_QUIT,""), - ("ScriptCommand_IncrementFlagValue", "f", DO_NOT_QUIT,""), + ("ScriptCommand_JumpIfFlagLessThan", "fbj", DO_NOT_QUIT,"jump_if_flag_less_than"), + ("ScriptCommand_MaxOutFlagValue", "f", DO_NOT_QUIT,"max_out_flag_value"), + ("ScriptCommand_ZeroOutFlagValue", "f", DO_NOT_QUIT,"zero_out_flag_value"), + ("ScriptCommand_JumpIfFlagNonzero2", "fj", DO_NOT_QUIT,"jump_if_flag_nonzero_2"), + ("ScriptCommand_JumpIfFlagZero2", "fj", DO_NOT_QUIT,"jump_if_flag_zero_2"), + ("ScriptCommand_IncrementFlagValue", "f", DO_NOT_QUIT,"increment_flag_value"), ("ScriptCommand_EndScriptLoop7", "q", QUIT_CONTINUE_CODE,"end_script_loop_7"), ("ScriptCommand_EndScriptLoop8", "q", QUIT_CONTINUE_CODE,"end_script_loop_8"), ("ScriptCommand_EndScriptLoop9", "q", QUIT_CONTINUE_CODE,"end_script_loop_9"), |