EN6_PRC8/_module/nss/en6_runering.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

24 lines
515 B
Plaintext

#include "en5_treasure"
void main()
{
int iRandom;
itemproperty ip;
object oPC;
object oItem;
oPC=GetPCSpeaker();
oItem=CreateItemOnObject("en6_runering",oPC);
ip=ItemPropertyACBonus(6);
IPSafeAddItemProperty(oItem,ip);
ip=ArtifactProperty();
IPSafeAddItemProperty(oItem,ip);
ip=ArtifactProperty();
IPSafeAddItemProperty(oItem,ip);
ip=ItemPropertyCastSpell(IP_CONST_CASTSPELL_TRUE_STRIKE_5,IP_CONST_CASTSPELL_NUMUSES_3_USES_PER_DAY);
IPSafeAddItemProperty(oItem,ip);
SetLocalInt(GetPCSpeaker(),"RuneRing",1);
}