From b4c9a7bdb164f600889dafb64ed48bf7c5a091fd Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 15 Apr 2019 09:51:10 -0500 Subject: [PATCH] - small text fix Runechanter's Pike. --- Mage.Sets/src/mage/cards/r/RunechantersPike.java | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/r/RunechantersPike.java b/Mage.Sets/src/mage/cards/r/RunechantersPike.java index b01ba3853a..8c61e3ba2a 100644 --- a/Mage.Sets/src/mage/cards/r/RunechantersPike.java +++ b/Mage.Sets/src/mage/cards/r/RunechantersPike.java @@ -1,4 +1,3 @@ - package mage.cards.r; import java.util.UUID; @@ -35,15 +34,21 @@ public final class RunechantersPike extends CardImpl { } public RunechantersPike(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{2}"); + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}"); this.subtype.add(SubType.EQUIPMENT); // Equip {2} this.addAbility(new EquipAbility(Outcome.AddAbility, new GenericManaCost(2))); // Equipped creature has first strike and gets +X/+0 where X is the number of instant and sorcery cards in your graveyard. - this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEquippedEffect(new RunechantersPikeValue(), new StaticValue(0)))); - this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(FirstStrikeAbility.getInstance(), AttachmentType.EQUIPMENT))); + Effect effect = new GainAbilityAttachedEffect(FirstStrikeAbility.getInstance(), AttachmentType.EQUIPMENT); + Effect effect2 = new BoostEquippedEffect(new RunechantersPikeValue(), new StaticValue(0)); + effect.setText("Equipped creature has first strike"); + effect2.setText(" and gets +X/+0 where X is the number of instant and sorcery cards in your graveyard."); + Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect); + ability.addEffect(effect2); + this.addAbility(ability); + } public RunechantersPike(final RunechantersPike card) {