////////////////////////////////////////////////////////////////////////////////
// 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
}