20 lines
679 B
Plaintext
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
|
|
}
|