NWNDS/nwnds_module/ps_cannibal.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

38 lines
1.1 KiB
Plaintext

/************************************
* Cannibalize *
* *
* Cost: 0 *
* Power Score: Con *
* *
*************************************/
#include "lib_psionic"
void main()
{
object oPC=OBJECT_SELF;
int nCost=0;
int nPowerScore=GetAbilityScore(oPC, ABILITY_CONSTITUTION);
int nCon=GetAbilityScore(oPC, ABILITY_CONSTITUTION);
if (nCon==3)
{
FloatingTextStringOnCreature("You do not have enough constitution.", oPC, FALSE);
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(292), oPC);
return;
}
if (!PowerCheck(oPC, nCost, nPowerScore, FEAT_PSIONIC_CANNIBALIZE, TRUE)) return;
if (GetIsImmune(oPC, IMMUNITY_TYPE_ABILITY_DECREASE))
{
FloatingTextStringOnCreature("You are immune to the draining effects of this power.", oPC, FALSE);
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(292), oPC);
return;
}
SetLocalObject(GetModule(), "Cani", oPC);
ExecuteScript("ps_cani2", GetModule());
}