Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

20 lines
679 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// hos1_lycwolf - Possibly become werewolf
// 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,"WEREWOLF");
FloatingTextStringOnCreature("Your body feels different. You feel energized and alive.",oTarget,FALSE);
} // lycanthropy can effect
} // valid target
}