Initial upload.

Adding base PRC 4.19a files to repository.
This commit is contained in:
Jaysyn904
2022-10-07 13:51:24 -04:00
parent 646eb01834
commit 1662218bb4
22441 changed files with 1274376 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
/*
Unstoppable
prc_lgdr_unstop
+20 attack bonus for 1 Round
Unless I can make it 1 Attack
*/
/*
void main()
{
//Old Spell Code
//Declare major variables
object oTarget;
oTarget = OBJECT_SELF;
effect eVis = EffectVisualEffect(VFX_IMP_HEAD_ODD);
effect eAttack = EffectAttackIncrease(20);
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
effect eLink = eAttack;
eLink = EffectLinkEffects(eLink, eDur);
//Apply VFX impact and bonus effects
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, 9.0);
}
*/
#include "prc_inc_combat"
void main()
{
object oPC = OBJECT_SELF;
object oTarget = PRCGetSpellTargetObject();
effect eInvalid;
PerformAttackRound(oTarget, oPC, eInvalid, 0.0, 20, 0, 0, FALSE,
"*Unstoppable Attack Hit*", "*Unstoppable Attack Missed");
}