mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-27 20:45:29 -05:00
13 lines
244 B
C
13 lines
244 B
C
#ifndef GUARD_STATUS_H
|
|
#define GUARD_STATUS_H
|
|
|
|
#include "dungeon_entity.h"
|
|
|
|
#define FLASH_FIRE_STATUS_NONE 0
|
|
#define FLASH_FIRE_STATUS_MAXED 1
|
|
#define FLASH_FIRE_STATUS_NOT_MAXED 2
|
|
|
|
u8 GetFlashFireStatus(struct DungeonEntity *pokemon);
|
|
|
|
#endif
|