Added PnP Dire Rat.
Added PnP Dire Rat.
This commit is contained in:
34
nwn_dark_sun/ps_tf_balor.nss
Normal file
34
nwn_dark_sun/ps_tf_balor.nss
Normal file
@@ -0,0 +1,34 @@
|
||||
/************************************
|
||||
* Transformation (Balor) *
|
||||
* *
|
||||
* Cost: 32 *
|
||||
* Power Score: Con -6 *
|
||||
* *
|
||||
*************************************/
|
||||
|
||||
#include "lib_psionic"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC=OBJECT_SELF;
|
||||
int nCost=32;
|
||||
int nPowerScore=GetAbilityScore(oPC, ABILITY_CONSTITUTION)-6;
|
||||
int nLevel=GetEffectivePsionicLevel(oPC, FEAT_PSIONIC_TRANSFORMATION);
|
||||
effect eVis=EffectVisualEffect(VFX_IMP_POLYMORPH);
|
||||
int nMorph=POLYMORPH_TYPE_BALOR;
|
||||
effect eLink=EffectPolymorph(nMorph);
|
||||
eLink=EffectLinkEffects(eLink, EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE));
|
||||
eLink=EffectLinkEffects(eLink, eVis);
|
||||
eLink=ExtraordinaryEffect(eLink);
|
||||
|
||||
if (!PowerCheck(oPC, nCost, nPowerScore, FEAT_PSIONIC_TRANSFORMATION)) return;
|
||||
|
||||
int nDuration=GetEnhancedDuration(nLevel/2);
|
||||
|
||||
RemoveEffectsFrom(oPC, SPELL_PSIONIC_ENHANCED_STRENGTH);
|
||||
|
||||
SignalEvent(oPC, EventSpellCastAt(oPC, SPELL_PSIONIC_TRANSFORMATION, FALSE));
|
||||
|
||||
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oPC, TurnsToSeconds(nDuration));
|
||||
}
|
||||
|
Reference in New Issue
Block a user