20 lines
676 B
Plaintext
20 lines
676 B
Plaintext
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
// hos1_lyccat - Possibly become werecat
|
||
|
// 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,"WERECAT");
|
||
|
FloatingTextStringOnCreature("Your body feels different. You feel energized and alive.",oTarget,FALSE);
|
||
|
} // lycanthropy can effect
|
||
|
} // valid target
|
||
|
}
|