Small clarification in the comment of the getseenmon and getcaughtmon macros, because why not

LOuroboros 2022-07-30 10:13:01 -03:00
parent bcd58c9105
commit 819893508d
1 changed files with 2 additions and 0 deletions

@ -97,12 +97,14 @@ These commands will check the state of either the Seen or the Caught Pokédex fl
```c ```c
@ Checks the state of the Pokédex Seen flag of the specified Pokemon @ Checks the state of the Pokédex Seen flag of the specified Pokemon
@ The result is stored in VAR_RESULT
.macro getseenmon species:req .macro getseenmon species:req
setvar VAR_TEMP_1, \species setvar VAR_TEMP_1, \species
specialvar VAR_RESULT, GetSeenMon specialvar VAR_RESULT, GetSeenMon
.endm .endm
@ Checks the state of the Pokédex Caught flag of the specified Pokemon @ Checks the state of the Pokédex Caught flag of the specified Pokemon
@ The result is stored in VAR_RESULT
.macro getcaughtmon species:req .macro getcaughtmon species:req
setvar VAR_TEMP_1, \species setvar VAR_TEMP_1, \species
specialvar VAR_RESULT, GetSeenMon specialvar VAR_RESULT, GetSeenMon