Amon_PRC8/_module/nss/sleepingpuffball.nss

10 lines
301 B
Plaintext
Raw Normal View History

2025-04-03 19:00:46 -04:00
//bards puff ball and rouges puff ball
void main()
{
object oPC = GetItemActivator();
object oItem = GetItemActivated();
effect eSummon = EffectSummonCreature("puffball", VFX_FNF_SUMMON_MONSTER_2, 0.5);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eSummon, oPC, HoursToSeconds(8));
}