PRC8_fork/trunk/newspellbook/tob_evnt_recover.nss

16 lines
438 B
Plaintext
Raw Normal View History

/*
Recover all maneuvers through EvalPRCFeats
*/
#include "tob_inc_recovery"
void main()
{
object oInitiator = OBJECT_SELF;
if(GetIsBladeMagicUser(oInitiator))
{
RecoverExpendedManeuvers(oInitiator, MANEUVER_LIST_CRUSADER);
RecoverExpendedManeuvers(oInitiator, MANEUVER_LIST_SWORDSAGE);
RecoverExpendedManeuvers(oInitiator, MANEUVER_LIST_WARBLADE);
RecoverPrCAbilities(oInitiator);
}
}