mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
updated even/odd text
This commit is contained in:
parent
c87fa5d3b2
commit
c5675140e6
3 changed files with 5 additions and 5 deletions
|
|
@ -31,7 +31,7 @@ public final class AshlingsPrerogative extends CardImpl {
|
|||
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{1}{R}");
|
||||
|
||||
// As Ashling's Prerogative enters the battlefield, choose odd or even.
|
||||
this.addAbility(new EntersBattlefieldAbility(new ChooseModeEffect("Odd or even?", "Odd", "Even"), null, "As {this} enters the battlefield, choose odd or even. (Zero is even.)", ""));
|
||||
this.addAbility(new EntersBattlefieldAbility(new ChooseModeEffect("Odd or even?", "Odd", "Even"), null, "As {this} enters the battlefield, choose odd or even. <i>(Zero is even.)</i>", ""));
|
||||
|
||||
// Each creature with converted mana cost of the chosen value has haste.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new AshlingsPrerogativeCorrectOddityEffect()));
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class ExtinctionEventEffect extends OneShotEffect {
|
|||
|
||||
ExtinctionEventEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "Choose odd or even. Exile each creature with converted mana cost of the chosen value.";
|
||||
staticText = "Choose odd or even. Exile each creature with converted mana cost of the chosen value. <i>(Zero is even.)</i>";
|
||||
}
|
||||
|
||||
private ExtinctionEventEffect(final ExtinctionEventEffect effect) {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ import mage.abilities.keyword.ProtectionAbility;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.DependencyType;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.FilterObject;
|
||||
import mage.filter.predicate.mageobject.ConvertedManaCostParityPredicate;
|
||||
|
|
@ -33,7 +32,8 @@ public final class LavabrinkVenturer extends CardImpl {
|
|||
|
||||
// As Lavabrink Venturer enters the battlefield, choose odd or even.
|
||||
this.addAbility(new AsEntersBattlefieldAbility(
|
||||
new ChooseModeEffect("Odd or even?", "Odd", "Even")
|
||||
new ChooseModeEffect("Odd or even?", "Odd", "Even"),
|
||||
"choose odd or even. <i>(Zero is even.)</i>"
|
||||
));
|
||||
|
||||
// Lavabrink Venturer has protection from each converted mana cost of the chosen value.
|
||||
|
|
@ -66,7 +66,7 @@ class LavabrinkVenturerEffect extends GainAbilitySourceEffect {
|
|||
LavabrinkVenturerEffect() {
|
||||
super(new ProtectionAbility(nullFilter));
|
||||
this.ability.setRuleVisible(false);
|
||||
staticText = "{this} has protection from each converted mana cost of the chosen value.";
|
||||
staticText = "{this} has protection from each converted mana cost of the chosen value. <i>(Zero is even.)</i>";
|
||||
}
|
||||
|
||||
private LavabrinkVenturerEffect(final LavabrinkVenturerEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue