From 0e6e1367242e51fa01e94e860957a7322332ebff Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Fri, 22 Sep 2017 21:45:56 -0400 Subject: [PATCH] small text change --- Mage.Sets/src/mage/cards/a/ArcticNishoba.java | 7 ++++++- Mage.Sets/src/mage/cards/j/JotunOwlKeeper.java | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/ArcticNishoba.java b/Mage.Sets/src/mage/cards/a/ArcticNishoba.java index 556ed77f521..927961134ad 100644 --- a/Mage.Sets/src/mage/cards/a/ArcticNishoba.java +++ b/Mage.Sets/src/mage/cards/a/ArcticNishoba.java @@ -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)); diff --git a/Mage.Sets/src/mage/cards/j/JotunOwlKeeper.java b/Mage.Sets/src/mage/cards/j/JotunOwlKeeper.java index 423a5415afc..0e47d8117e6 100644 --- a/Mage.Sets/src/mage/cards/j/JotunOwlKeeper.java +++ b/Mage.Sets/src/mage/cards/j/JotunOwlKeeper.java @@ -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))));