mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Demonspine Whip - Fixed tool tip rule text.
This commit is contained in:
parent
72f2382199
commit
5aa1d1e422
1 changed files with 3 additions and 7 deletions
|
@ -27,6 +27,7 @@
|
|||
*/
|
||||
package mage.cards.d;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
|
@ -41,8 +42,6 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.*;
|
||||
import mage.game.Game;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author jeffwadsworth
|
||||
|
@ -50,12 +49,9 @@ import java.util.UUID;
|
|||
public class DemonspineWhip extends CardImpl {
|
||||
|
||||
public DemonspineWhip(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{B}{R}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{B}{R}");
|
||||
this.subtype.add("Equipment");
|
||||
|
||||
|
||||
|
||||
|
||||
// {X}: Equipped creature gets +X/+0 until end of turn.
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostEquippedEffect(new XPaid(), new StaticValue(0), Duration.EndOfTurn), new ManaCostsImpl("{X}")));
|
||||
|
||||
|
@ -88,7 +84,7 @@ class XPaid implements DynamicValue {
|
|||
|
||||
@Override
|
||||
public String getMessage() {
|
||||
return "X paid";
|
||||
return "";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue