package mage.abilities.keyword; import mage.abilities.common.EntersBattlefieldTriggeredAbility; import mage.abilities.effects.common.CreateTokenAttachSourceEffect; import mage.game.permanent.token.PhyrexianGermToken; public class LivingWeaponAbility extends EntersBattlefieldTriggeredAbility { public LivingWeaponAbility() { super(new CreateTokenAttachSourceEffect(new PhyrexianGermToken())); } protected LivingWeaponAbility(final LivingWeaponAbility ability) { super(ability); } @Override public String getRule() { return "Living weapon (When this Equipment enters, " + "create a 0/0 black Phyrexian Germ creature token, then attach this to it.)"; } @Override public LivingWeaponAbility copy() { return new LivingWeaponAbility(this); } }