renamed Revenge class from Star Wars set

This commit is contained in:
Evan Kranzler 2019-01-23 08:09:48 -05:00
parent 6e8aa7df5c
commit 50c7aadcc8
2 changed files with 6 additions and 6 deletions

View file

@ -25,9 +25,9 @@ import mage.watchers.common.PlayerLostLifeWatcher;
*
* @author Styxo
*/
public final class Revenge extends CardImpl {
public final class RevengeStarWars extends CardImpl {
public Revenge(UUID ownerId, CardSetInfo setInfo) {
public RevengeStarWars(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{R}");
// Target creature you control gets +4/+0 until end of turn before it fights if you lost life this turn.
@ -45,13 +45,13 @@ public final class Revenge extends CardImpl {
}
public Revenge(final Revenge card) {
public RevengeStarWars(final RevengeStarWars card) {
super(card);
}
@Override
public Revenge copy() {
return new Revenge(this);
public RevengeStarWars copy() {
return new RevengeStarWars(this);
}
}

View file

@ -269,7 +269,7 @@ public final class StarWars extends ExpansionSet {
cards.add(new SetCardInfo("Repurpose", 85, Rarity.COMMON, mage.cards.r.Repurpose.class));
cards.add(new SetCardInfo("Resistance", 310, Rarity.UNCOMMON, mage.cards.r.Resistance.class));
cards.add(new SetCardInfo("Resistance Bomber", 515, Rarity.UNCOMMON, mage.cards.r.ResistanceBomber.class));
cards.add(new SetCardInfo("Revenge", 117, Rarity.COMMON, mage.cards.r.Revenge.class));
cards.add(new SetCardInfo("Revenge", 117, Rarity.COMMON, mage.cards.r.RevengeStarWars.class));
cards.add(new SetCardInfo("Rey", 410, Rarity.RARE, mage.cards.r.Rey.class));
cards.add(new SetCardInfo("Riding Ronto", 28, Rarity.UNCOMMON, mage.cards.r.RidingRonto.class));
cards.add(new SetCardInfo("Riot Trooper", 411, Rarity.COMMON, mage.cards.r.RiotTrooper.class));