Added a definition for opcode get_num_kills aka unknown_f829.

This commit is contained in:
jtuu 2020-08-02 14:27:20 +03:00
parent cb1cfeab96
commit 2cbee9acfb
2 changed files with 22 additions and 5 deletions

View File

@ -1987,6 +1987,23 @@ opcodes:
doc: Floor ID.
access: read
- code: 0xf829
mnemonic: get_num_kills
doc: Returns the number of enemies a player has killed during the quest.
params:
- type: reg_tup_ref
reg_tup:
- type: dword
doc: Player slot.
access: read
- type: any
doc: Unused
- type: reg_tup_ref
reg_tup:
- type: dword
doc: Result register.
access: write
- code: 0xf82b
mnemonic: unlock_door2
params: [{ type: dword }, { type: dword }]

View File

@ -3698,12 +3698,12 @@ export const OP_GO_FLOOR = (OPCODES[0xf828] = new_opcode(
],
undefined,
));
export const OP_UNKNOWN_F829 = (OPCODES[0xf829] = new_opcode(
export const OP_GET_NUM_KILLS = (OPCODES[0xf829] = new_opcode(
0xf829,
"unknown_f829",
undefined,
[],
undefined,
"get_num_kills",
"Returns the number of enemies a player has killed during the quest.",
[new_param({ kind: Kind.RegTupRef, register_tuples: [new_param(TYPE_DWORD, "Player slot.", ParamAccess.Read)] }, undefined, undefined), new_param(TYPE_ANY, "Unused", undefined), new_param({ kind: Kind.RegTupRef, register_tuples: [new_param(TYPE_DWORD, "Result register.", ParamAccess.Write)] }, undefined, undefined)],
undefined
));
export const OP_UNKNOWN_F82A = (OPCODES[0xf82a] = new_opcode(
0xf82a,