mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
- small text fix Runechanter's Pike.
This commit is contained in:
parent
1518802a38
commit
b4c9a7bdb1
1 changed files with 9 additions and 4 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.r;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -42,8 +41,14 @@ public final class RunechantersPike extends CardImpl {
|
|||
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) {
|
||||
|
|
Loading…
Reference in a new issue