14 lines
225 B
Plaintext
14 lines
225 B
Plaintext
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iDC = 28;
|
||
|
int iBonus = GetAbilityModifier(ABILITY_DEXTERITY, GetPCSpeaker());
|
||
|
|
||
|
if (!((d20() + iBonus) >= iDC))
|
||
|
return FALSE;
|
||
|
|
||
|
else
|
||
|
return TRUE;
|
||
|
}
|