updated RNA spoiler

This commit is contained in:
Evan Kranzler 2019-01-11 19:18:27 -05:00
parent dec7f03820
commit 417de2b22e
5 changed files with 15 additions and 11 deletions

View file

@ -1,5 +1,6 @@
package mage.cards.c;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.common.ExileTargetEffect;
@ -26,6 +27,8 @@ public final class CarrionImp extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
this.subtype.add(SubType.IMP);
this.power = new MageInt(2);
this.toughness = new MageInt(3);
// Flying
this.addAbility(FlyingAbility.getInstance());

View file

@ -20,7 +20,7 @@ import java.util.UUID;
public final class DaggerCaster extends CardImpl {
public DaggerCaster(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}");
this.subtype.add(SubType.VIASHINO);
this.subtype.add(SubType.ROGUE);

View file

@ -19,7 +19,7 @@ import java.util.UUID;
/**
* @author TheElk801
*/
public final class SummaryJudgement extends CardImpl {
public final class SummaryJudgment extends CardImpl {
private static final FilterPermanent filter = new FilterCreaturePermanent("tapped creature");
@ -27,7 +27,7 @@ public final class SummaryJudgement extends CardImpl {
filter.add(new TappedPredicate());
}
public SummaryJudgement(UUID ownerId, CardSetInfo setInfo) {
public SummaryJudgment(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{W}");
// Summary Judgement deals 3 damage to target tapped creature.
@ -36,13 +36,13 @@ public final class SummaryJudgement extends CardImpl {
this.getSpellAbility().addTarget(new TargetPermanent(filter));
}
private SummaryJudgement(final SummaryJudgement card) {
private SummaryJudgment(final SummaryJudgment card) {
super(card);
}
@Override
public SummaryJudgement copy() {
return new SummaryJudgement(this);
public SummaryJudgment copy() {
return new SummaryJudgment(this);
}
}

View file

@ -243,7 +243,7 @@ public final class RavnicaAllegiance extends ExpansionSet {
cards.add(new SetCardInfo("Spire Mangler", 86, Rarity.UNCOMMON, mage.cards.s.SpireMangler.class));
cards.add(new SetCardInfo("Spirit of the Spires", 23, Rarity.UNCOMMON, mage.cards.s.SpiritOfTheSpires.class));
cards.add(new SetCardInfo("Stomping Ground", 259, Rarity.RARE, mage.cards.s.StompingGround.class));
cards.add(new SetCardInfo("Summary Judgement", 24, Rarity.COMMON, mage.cards.s.SummaryJudgement.class));
cards.add(new SetCardInfo("Summary Judgment", 24, Rarity.COMMON, mage.cards.s.SummaryJudgment.class));
cards.add(new SetCardInfo("Sunder Shaman", 210, Rarity.UNCOMMON, mage.cards.s.SunderShaman.class));
cards.add(new SetCardInfo("Swamp", 262, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Swirling Torrent", 56, Rarity.UNCOMMON, mage.cards.s.SwirlingTorrent.class));