mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-21 05:17:15 -05:00
Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
12 lines
279 B
Plaintext
12 lines
279 B
Plaintext
#include "prc_alterations"
|
|
#include "prc_inc_spells"
|
|
#include "inc_poison"
|
|
|
|
void main()
|
|
{
|
|
object oTarget = PRCGetSpellTargetObject();
|
|
effect ePoison = EffectPoison(POISON_RAVAGE_GOLDEN_ICE);
|
|
|
|
SPApplyEffectToObject(DURATION_TYPE_PERMANENT, ePoison, oTarget, 0.0f, FALSE);
|
|
}
|