mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-24 23:09:54 -05:00
21 lines
424 B
C
21 lines
424 B
C
#include "joined_at_checks.h"
|
|
|
|
bool8 IsSpecialStoryAlly(struct monster *monster)
|
|
{
|
|
if (monster->joined_at >= DUNGEON_JOINED_AT_BIDOOF && monster->joined_at < DUNGEON_DUMMY_0xE4)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
bool8 IsExperienceLocked(struct monster *monster)
|
|
{
|
|
if (monster->joined_at == DUNGEON_CLIENT)
|
|
return TRUE;
|
|
|
|
if (IsSpecialStoryAlly(monster))
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|