PRC8/nwn/nwnprc/trunk/racescripts/race_arkamoi_mmd.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

13 lines
439 B
Plaintext

#include "prc_inc_spells"
void main()
{
object oPC = OBJECT_SELF;
if (3 > GetLocalInt(oPC, "StrengthFromMagic"))
{
FloatingTextStringOnCreature("Your Strength from Magic is not strong enough to be an Arcane Mastermind", oPC, FALSE);
return;
}
if(!TakeSwiftAction(oPC)) return;
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, ExtraordinaryEffect(EffectAttackIncrease(2)), PRCGetSpellTargetObject(), 6.0);
}