mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
small text change
This commit is contained in:
parent
b17bed6d9b
commit
0e6e136724
2 changed files with 12 additions and 2 deletions
|
|
@ -30,6 +30,7 @@ package mage.cards.a;
|
|||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesTriggeredAbility;
|
||||
import mage.abilities.costs.OrCost;
|
||||
import mage.constants.SubType;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
|
|
@ -61,7 +62,11 @@ public class ArcticNishoba extends CardImpl {
|
|||
this.addAbility(TrampleAbility.getInstance());
|
||||
|
||||
// Cumulative upkeep {G} or {W}
|
||||
this.addAbility(new CumulativeUpkeepAbility(new ManaCostsImpl("{G/W}")));
|
||||
this.addAbility(new CumulativeUpkeepAbility(new OrCost(
|
||||
new ManaCostsImpl("{G}"),
|
||||
new ManaCostsImpl("{W}"),
|
||||
"{G} or {W}"
|
||||
)));
|
||||
|
||||
// When Arctic Nishoba dies, you gain 2 life for each age counter on it.
|
||||
Effect effect = new GainLifeEffect(new MultipliedValue(new CountersSourceCount(CounterType.AGE), 2));
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ package mage.cards.j;
|
|||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesTriggeredAbility;
|
||||
import mage.abilities.costs.OrCost;
|
||||
import mage.constants.SubType;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.dynamicvalue.common.CountersSourceCount;
|
||||
|
|
@ -55,7 +56,11 @@ public class JotunOwlKeeper extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Cumulative upkeep {W} or {U}
|
||||
this.addAbility(new CumulativeUpkeepAbility(new ManaCostsImpl("{W/U}")));
|
||||
this.addAbility(new CumulativeUpkeepAbility(new OrCost(
|
||||
new ManaCostsImpl("{W}"),
|
||||
new ManaCostsImpl("{U}"),
|
||||
"{W} or {U}"
|
||||
)));
|
||||
|
||||
// When Jötun Owl Keeper dies, put a 1/1 white Bird creature token with flying onto the battlefield for each age counter on it.
|
||||
this.addAbility(new DiesTriggeredAbility(new CreateTokenEffect(new BirdToken(), new CountersSourceCount(CounterType.AGE))));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue