Ceaseless Searblades - add author name, make rule text refer to the permanent's name and ability instead of being hardcoded

This commit is contained in:
Will Hall 2016-01-24 15:09:52 -08:00
parent c5a1911f9a
commit 0fe2f4e32a

View file

@ -45,7 +45,7 @@ import mage.game.events.GameEvent;
/**
*
* @author North
* @author Will
*/
public class CeaselessSearblades extends CardImpl {
@ -112,6 +112,6 @@ class CeaselessSearbladesTriggeredAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
return "Whenever you activate an ability of an Elemental, Ceaseless Searblades gets +1/+0 until end of turn.";
return "Whenever you activate an ability of an Elemental, " + super.getRule();
}
}