updated RNA spoiler

This commit is contained in:
Evan Kranzler 2019-01-12 10:33:40 -05:00
parent eb743fbf70
commit b24b1a6af4
4 changed files with 7 additions and 7 deletions

View file

@ -18,7 +18,7 @@ public final class RubblebeltRecluse extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{R}");
this.subtype.add(SubType.OGRE);
this.subtype.add(SubType.WARRIOR);
this.subtype.add(SubType.BERSERKER);
this.power = new MageInt(6);
this.toughness = new MageInt(5);

View file

@ -22,7 +22,7 @@ public final class SkitterEel extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(3);
// {2}{U}: Adapt 2. (If this creature has no +1/+1 counters on it, put two +1/+1 counters on it.
// {2}{U}: Adapt 2.
this.addAbility(new AdaptAbility(2, "{2}{U}"));
}

View file

@ -20,14 +20,14 @@ public final class UndercitysEmbrace extends CardImpl {
public UndercitysEmbrace(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}");
// Target opponent sacrifices a creature. If you control a creature with power 4 or greater, your gain 4 life.
// Target opponent sacrifices a creature. If you control a creature with power 4 or greater, you gain 4 life.
this.getSpellAbility().addEffect(new SacrificeEffect(
StaticFilters.FILTER_PERMANENT_A_CREATURE, 1, "target player"
));
this.getSpellAbility().addTarget(new TargetOpponent());
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new GainLifeEffect(4), FerociousCondition.instance,
"If you control a creature with power 4 or greater, your gain 4 life."
"If you control a creature with power 4 or greater, you gain 4 life."
));
}