int eventStrike(object who) {
  int nolive = who->GetProperty("lycanthrope");
  int amount = random(25)+100;

  if (nolive == 1) {
      message("action", "Smoke rises from the wound created by " 
      + environment()->GetCapName() + "'s staff.", 
      environment(environment()) );
      return (item::eventStrike(who) + amount);
   
  }
      return (item::eventStrike(who));
}
