mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
a few more text fixes
This commit is contained in:
parent
ab81e45cc9
commit
d12b34e05b
4 changed files with 6 additions and 6 deletions
|
|
@ -35,7 +35,8 @@ public final class PickYourPoison extends CardImpl {
|
||||||
this.getSpellAbility().addMode(new Mode(new SacrificeOpponentsEffect(StaticFilters.FILTER_PERMANENT_ENCHANTMENT)));
|
this.getSpellAbility().addMode(new Mode(new SacrificeOpponentsEffect(StaticFilters.FILTER_PERMANENT_ENCHANTMENT)));
|
||||||
|
|
||||||
// * Each opponent sacrifices a creature with flying.
|
// * Each opponent sacrifices a creature with flying.
|
||||||
this.getSpellAbility().addMode(new Mode(new SacrificeOpponentsEffect(filter)));
|
this.getSpellAbility().addMode(new Mode(new SacrificeOpponentsEffect(filter)
|
||||||
|
.setText("each opponent sacrifices a creature of their choice with flying")));
|
||||||
}
|
}
|
||||||
|
|
||||||
private PickYourPoison(final PickYourPoison card) {
|
private PickYourPoison(final PickYourPoison card) {
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ public final class PompousGadabout extends CardImpl {
|
||||||
// Pompous Gadabout has hexproof as long as it's your turn.
|
// Pompous Gadabout has hexproof as long as it's your turn.
|
||||||
this.addAbility(new SimpleStaticAbility(new ConditionalContinuousEffect(
|
this.addAbility(new SimpleStaticAbility(new ConditionalContinuousEffect(
|
||||||
new GainAbilitySourceEffect(HexproofAbility.getInstance(), Duration.WhileOnBattlefield),
|
new GainAbilitySourceEffect(HexproofAbility.getInstance(), Duration.WhileOnBattlefield),
|
||||||
MyTurnCondition.instance, "{this} has hexproof as long as it's your turn"
|
MyTurnCondition.instance, "during your turn, {this} has hexproof"
|
||||||
)).addHint(MyTurnHint.instance));
|
)).addHint(MyTurnHint.instance));
|
||||||
|
|
||||||
// Pompous Gadabout can't be blocked by creatures that don't have a name.
|
// Pompous Gadabout can't be blocked by creatures that don't have a name.
|
||||||
|
|
@ -67,4 +67,4 @@ enum PompousGadaboutPredicate implements Predicate<Permanent> {
|
||||||
public boolean apply(Permanent input, Game game) {
|
public boolean apply(Permanent input, Game game) {
|
||||||
return input.getName() == null || input.getName().isEmpty();
|
return input.getName() == null || input.getName().isEmpty();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,6 @@ import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Duration;
|
import mage.constants.Duration;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.constants.Zone;
|
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
|
@ -31,7 +30,7 @@ public final class WildwoodGeist extends CardImpl {
|
||||||
this.addAbility(new SimpleStaticAbility(new ConditionalContinuousEffect(
|
this.addAbility(new SimpleStaticAbility(new ConditionalContinuousEffect(
|
||||||
new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield),
|
new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield),
|
||||||
MyTurnCondition.instance,
|
MyTurnCondition.instance,
|
||||||
"{this} gets +2/+2 as long as it's your turn"))
|
"during your turn, {this} gets +2/+2"))
|
||||||
.addHint(MyTurnHint.instance));
|
.addHint(MyTurnHint.instance));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ public final class ZurgoHelmsmasher extends CardImpl {
|
||||||
this.addAbility(new SimpleStaticAbility(
|
this.addAbility(new SimpleStaticAbility(
|
||||||
new ConditionalContinuousEffect(new GainAbilitySourceEffect(IndestructibleAbility.getInstance(), Duration.WhileOnBattlefield),
|
new ConditionalContinuousEffect(new GainAbilitySourceEffect(IndestructibleAbility.getInstance(), Duration.WhileOnBattlefield),
|
||||||
MyTurnCondition.instance,
|
MyTurnCondition.instance,
|
||||||
"{this} has indestructible as long as it's your turn"))
|
"during your turn, {this} has indestructible"))
|
||||||
.addHint(MyTurnHint.instance));
|
.addHint(MyTurnHint.instance));
|
||||||
|
|
||||||
// Whenever a creature dealt damage by Zurgo Helmsmasher this turn dies, put a +1/+1 counter on Zurgo Helmsmasher.
|
// Whenever a creature dealt damage by Zurgo Helmsmasher this turn dies, put a +1/+1 counter on Zurgo Helmsmasher.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue