Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
85 lines
2.4 KiB
Plaintext
85 lines
2.4 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name Addiction: Sannish
|
|
//:: FileName sp_addct_snh.nss
|
|
//:://////////////////////////////////////////////
|
|
/** Script for addiction to the drug Sannish
|
|
|
|
Author: Tenjac
|
|
Created: 5/24/06
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//::///////////////////////////////////////////////
|
|
//:: Name Addiction: Mushroom Powder
|
|
//:: FileName sp_addct_msh.nss
|
|
//:://////////////////////////////////////////////
|
|
/** Script for addiction to the drug Mushroom Powder
|
|
|
|
Author: Tenjac
|
|
Created: 5/24/06
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "prc_inc_spells"
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
int nDC = GetPersistantLocalInt(oPC, "PRC_Addiction_Sannish_DC");
|
|
int nSatiation = GetPersistantLocalInt(oPC, "PRC_SannishSatiation");
|
|
|
|
//make save vs nasty bad things or have satiation
|
|
if(!PRCMySavingThrow(SAVING_THROW_FORT, oPC, nDC, SAVING_THROW_TYPE_DISEASE) &&
|
|
(!GetPersistantLocalInt(oPC, "PRC_SannishSatiation")))
|
|
{
|
|
//1d8 Dex, 1d8 Wis, 1d6 Con, 1d6 Str
|
|
ApplyAbilityDamage(oPC, ABILITY_DEXTERITY, d4(1), DURATION_TYPE_TEMPORARY, TRUE, -1.0f, FALSE);
|
|
ApplyAbilityDamage(oPC, ABILITY_WISDOM, d4(1), DURATION_TYPE_TEMPORARY, TRUE, -1.0f, FALSE);
|
|
|
|
DeletePersistantLocalInt(oPC, "PRC_PreviousSannishSave");
|
|
}
|
|
|
|
else
|
|
{
|
|
//Two successful saves
|
|
if(GetPersistantLocalInt(oPC, "PRC_PreviousSannishSave"))
|
|
{
|
|
//Remove addiction
|
|
//Find the disease effect
|
|
effect eDisease = GetFirstEffect(oPC);
|
|
effect eTest = EffectDisease(DISEASE_SANNISH_ADDICTION);
|
|
|
|
while(GetIsEffectValid(eDisease))
|
|
{
|
|
if(GetEffectType(eDisease) == EFFECT_TYPE_DISEASE)
|
|
{
|
|
if(GetEffectSpellId(eDisease) == SPELL_SANNISH)
|
|
{
|
|
|
|
RemoveEffect(oPC, eDisease);
|
|
DeletePersistantLocalInt(oPC, "PRC_PreviousSannishSave");
|
|
break;
|
|
}
|
|
}
|
|
|
|
eDisease = GetNextEffect(oPC);
|
|
}
|
|
}
|
|
//Saved, but no previous
|
|
else
|
|
{
|
|
SetPersistantLocalInt(oPC, "PRC_PreviousSannishSave", 1);
|
|
}
|
|
}
|
|
|
|
//Handle DC increase from addiction.
|
|
if(!GetPersistantLocalInt(oPC, "PRC_SannishSatiation"))
|
|
{
|
|
SetPersistantLocalInt(oPC, "PRC_Addiction_Sannish_DC", (nDC + 5));
|
|
}
|
|
|
|
//Decrement satiation
|
|
nSatiation--;
|
|
SetPersistantLocalInt(oPC, "PRC_SannishSatiation", nSatiation);
|
|
} |