mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Serrated Arrows - Fixed that it came onto battlefield with 4 instead of correctly 3 arrowhead counters.
This commit is contained in:
parent
aa9290276d
commit
11d671d255
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ public class SerratedArrows extends CardImpl {
|
||||||
this.expansionSetCode = "HML";
|
this.expansionSetCode = "HML";
|
||||||
|
|
||||||
// Serrated Arrows enters the battlefield with three arrowhead counters on it.
|
// Serrated Arrows enters the battlefield with three arrowhead counters on it.
|
||||||
Effect effect = new AddCountersSourceEffect(CounterType.ARROWHEAD.createInstance(4));
|
Effect effect = new AddCountersSourceEffect(CounterType.ARROWHEAD.createInstance(3));
|
||||||
effect.setText("with three arrowhead counters on it");
|
effect.setText("with three arrowhead counters on it");
|
||||||
this.addAbility(new EntersBattlefieldAbility(effect));
|
this.addAbility(new EntersBattlefieldAbility(effect));
|
||||||
// At the beginning of your upkeep, if there are no arrowhead counters on Serrated Arrows, sacrifice it.
|
// At the beginning of your upkeep, if there are no arrowhead counters on Serrated Arrows, sacrifice it.
|
||||||
|
|
Loading…
Reference in a new issue