mirror of
https://github.com/correl/mage.git
synced 2025-04-03 17:00:16 -09:00
Rule text changes - Oracle updates 11.01.2018 (closes #4412)
This commit is contained in:
parent
0f13ac8b99
commit
07ab5cb731
3 changed files with 18 additions and 18 deletions
Mage.Sets/src/mage/cards
|
@ -53,7 +53,7 @@ import mage.players.Player;
|
|||
public class CalmingVerse extends CardImpl {
|
||||
|
||||
public CalmingVerse(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{3}{G}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{G}");
|
||||
|
||||
// Destroy all enchantments you don't control. Then, if you control an untapped land, destroy all enchantments you control.
|
||||
this.getSpellAbility().addEffect(new CalmingVerseEffect());
|
||||
|
@ -73,22 +73,23 @@ public class CalmingVerse extends CardImpl {
|
|||
class CalmingVerseEffect extends OneShotEffect {
|
||||
|
||||
private static final FilterPermanent untappedLandFilter = new FilterPermanent("If you control an untapped land");
|
||||
|
||||
static {
|
||||
untappedLandFilter.add(new CardTypePredicate(CardType.LAND));
|
||||
untappedLandFilter.add(Predicates.not(new TappedPredicate()));
|
||||
}
|
||||
|
||||
private static final FilterEnchantmentPermanent opponentEnchantmentsFilter = new FilterEnchantmentPermanent("enchantments you don't control");
|
||||
|
||||
static {
|
||||
opponentEnchantmentsFilter.add(new ControllerPredicate(TargetController.OPPONENT));
|
||||
}
|
||||
|
||||
private static final FilterControlledEnchantmentPermanent controlledEnchantmentsFilter = new FilterControlledEnchantmentPermanent("enchantments you control");
|
||||
|
||||
|
||||
public CalmingVerseEffect() {
|
||||
super(Outcome.Detriment);
|
||||
this.staticText = "Destroy all enchantments you don't control. Then, if you control an untapped land, destroy all enchantments you control";
|
||||
this.staticText = "Destroy all enchantments you don't control. Then if you control an untapped land, destroy all enchantments you control";
|
||||
}
|
||||
|
||||
public CalmingVerseEffect(final CalmingVerseEffect effect) {
|
||||
|
|
|
@ -50,7 +50,7 @@ import mage.game.events.ZoneChangeEvent;
|
|||
public class GrafdiggersCage extends CardImpl {
|
||||
|
||||
public GrafdiggersCage(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{1}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{1}");
|
||||
|
||||
// Creature cards can't enter the battlefield from graveyards or libraries.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GrafdiggersCageEffect()));
|
||||
|
@ -73,7 +73,7 @@ class GrafdiggersCageEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
|
||||
public GrafdiggersCageEffect() {
|
||||
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||
staticText = "Creature cards can't enter the battlefield from graveyards or libraries";
|
||||
staticText = "Creature cards in graveyards and libraries can't enter the battlefield";
|
||||
}
|
||||
|
||||
public GrafdiggersCageEffect(final GrafdiggersCageEffect effect) {
|
||||
|
@ -120,7 +120,6 @@ class GrafdiggersCageEffect2 extends ContinuousRuleModifyingEffectImpl {
|
|||
return new GrafdiggersCageEffect2(this);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean checksEventType(GameEvent event, Game game) {
|
||||
return event.getType() == GameEvent.EventType.CAST_SPELL;
|
||||
|
|
|
@ -48,7 +48,7 @@ import mage.players.Player;
|
|||
public class RhysticScrying extends CardImpl {
|
||||
|
||||
public RhysticScrying(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{2}{U}{U}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{U}{U}");
|
||||
|
||||
// Draw three cards. Then, if any player pays {2}, discard three cards.
|
||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(3));
|
||||
|
@ -69,7 +69,7 @@ class RhysticScryingEffect extends OneShotEffect {
|
|||
|
||||
public RhysticScryingEffect() {
|
||||
super(Outcome.Benefit);
|
||||
this.staticText = "Then, if any player pays {2}, discard three cards";
|
||||
this.staticText = "Then if any player pays {2}, discard three cards";
|
||||
}
|
||||
|
||||
public RhysticScryingEffect(final RhysticScryingEffect effect) {
|
||||
|
|
Loading…
Add table
Reference in a new issue