Ancordia_PRC8/_module/nss/has_dragonshape.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

9 lines
221 B
Plaintext

//Instead of ACTUALLY having Dragon Shape, a henchman just ought to be level 40. Just a little cheat, I guess.
int StartingConditional()
{
if ( GetHitDice(OBJECT_SELF) < 40 )
return FALSE;
return TRUE;
}