HoS_PRC8/_mod/_module/nss/hos1_lycboar.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

20 lines
679 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// hos1_lycboar - Possibly become wereboar
// By Deva B. Winblood. December 22nd, 2008.
////////////////////////////////////////////////////////////////////////////////
#include "hos1_inc_were"
void main()
{
object oTarget=OBJECT_SELF;
if (GetIsPC(oTarget))
{ // valid target
if (LycanthropyCanEffect(oTarget))
{ // lycanthropy can effect
LycanthropyMakeLycanthrope(oTarget,"WEREBOAR");
FloatingTextStringOnCreature("Your body feels different. You feel energized and alive.",oTarget,FALSE);
} // lycanthropy can effect
} // valid target
}