PRC8_fork/trunk/newspellbook/tob_evnt_recover.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

16 lines
438 B
Plaintext

/*
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);
}
}