mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Rename GiftofGrowth
This commit is contained in:
parent
7fdc6477cc
commit
04014b30d6
2 changed files with 7 additions and 7 deletions
|
@ -4,7 +4,6 @@ package mage.cards.g;
|
|||
import mage.abilities.condition.LockedInCondition;
|
||||
import mage.abilities.condition.common.KickedCondition;
|
||||
import mage.abilities.decorator.ConditionalContinuousEffect;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.UntapTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.abilities.keyword.KickerAbility;
|
||||
|
@ -20,9 +19,9 @@ import java.util.UUID;
|
|||
*
|
||||
* @author rscoates
|
||||
*/
|
||||
public final class GiftofGrowth extends CardImpl {
|
||||
public final class GiftOfGrowth extends CardImpl {
|
||||
|
||||
public GiftofGrowth(UUID ownerId, CardSetInfo setInfo) {
|
||||
public GiftOfGrowth(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{1}{G}");
|
||||
|
||||
// Kicker {2}
|
||||
|
@ -36,12 +35,12 @@ public final class GiftofGrowth extends CardImpl {
|
|||
"It gets +2/+2 until end of turn. If this spell was kicked, that creature gets +4/+4 until end of turn instead."));
|
||||
}
|
||||
|
||||
public GiftofGrowth(final GiftofGrowth card) {
|
||||
public GiftOfGrowth(final GiftOfGrowth card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GiftofGrowth copy() {
|
||||
return new GiftofGrowth(this);
|
||||
public GiftOfGrowth copy() {
|
||||
return new GiftOfGrowth(this);
|
||||
}
|
||||
}
|
|
@ -2,6 +2,7 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.cards.g.GiftOfGrowth;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
|
@ -117,7 +118,7 @@ public final class Dominaria extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Ghitu Journeymage", 126, Rarity.COMMON, mage.cards.g.GhituJourneymage.class));
|
||||
cards.add(new SetCardInfo("Ghitu Lavarunner", 127, Rarity.COMMON, mage.cards.g.GhituLavarunner.class));
|
||||
cards.add(new SetCardInfo("Gideon's Reproach", 19, Rarity.COMMON, mage.cards.g.GideonsReproach.class));
|
||||
cards.add(new SetCardInfo("Gift of Growth", 163, Rarity.COMMON, mage.cards.g.GiftofGrowth.class));
|
||||
cards.add(new SetCardInfo("Gift of Growth", 163, Rarity.COMMON, GiftOfGrowth.class));
|
||||
cards.add(new SetCardInfo("Gilded Lotus", 215, Rarity.RARE, mage.cards.g.GildedLotus.class));
|
||||
cards.add(new SetCardInfo("Goblin Barrage", 128, Rarity.UNCOMMON, mage.cards.g.GoblinBarrage.class));
|
||||
cards.add(new SetCardInfo("Goblin Chainwhirler", 129, Rarity.RARE, mage.cards.g.GoblinChainwhirler.class));
|
||||
|
|
Loading…
Reference in a new issue