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.
57 lines
1.7 KiB
Plaintext
57 lines
1.7 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name Terran Brandy
|
|
//:: FileName sp_terran_brndy.nss
|
|
//:://////////////////////////////////////////////
|
|
/** Script for the drug Terran Brandy
|
|
Author: Tenjac
|
|
Created: 5/23/06
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
#include "prc_inc_spells"
|
|
#include "prc_inc_drugfunc"
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
|
|
//Handle resetting addiction DC
|
|
SetPersistantLocalInt(oPC, "PRC_Addiction_TerranBrandy_DC", 6);
|
|
|
|
//Handle satiation
|
|
SetPersistantLocalInt(oPC, "PRC_TerranBrandySatiation", 10);
|
|
|
|
//Primary - +2 Caster level 1d20 +20 min
|
|
float fDur = IntToFloat(d20(1) + 20) * 60.0f;
|
|
|
|
//Set VFX in order to make spell duration the duration of the caster level boost
|
|
//and check for spell effect in PRCGetCasterLevel
|
|
|
|
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE), oPC, fDur);
|
|
|
|
//Secondary - 2 Con damage
|
|
DelayCommand(60.0f, ApplyAbilityDamage(oPC, ABILITY_CONSTITUTION, 2, DURATION_TYPE_TEMPORARY, TRUE, -1.0f));
|
|
|
|
//Addiction check
|
|
if(!GetHasSpellEffect(SPELL_DRUG_RESISTANCE, oPC))
|
|
{
|
|
if(!PRCMySavingThrow(SAVING_THROW_FORT, oPC, 6, SAVING_THROW_TYPE_DISEASE))
|
|
{
|
|
effect eAddict = EffectDisease(DISEASE_TERRAN_BRANDY_ADDICTION);
|
|
SPApplyEffectToObject(DURATION_TYPE_PERMANENT, eAddict, oPC);
|
|
FloatingTextStringOnCreature("You have become addicted to Terran Brandy.", oPC, FALSE);
|
|
}
|
|
}
|
|
|
|
//Overdose
|
|
if(GetOverdoseCounter(oPC, "PRC_TerranBrandyOD"))
|
|
{
|
|
ApplyAbilityDamage(oPC, ABILITY_CONSTITUTION, 1, DURATION_TYPE_TEMPORARY, TRUE, -1.0f);
|
|
}
|
|
|
|
//OD increment
|
|
IncrementOverdoseTracker(oPC, "PRC_TerranBrandyOD", HoursToSeconds(8));
|
|
}
|
|
|
|
|
|
|