forked from External/mage
text fixes
This commit is contained in:
parent
9b1eada953
commit
b7e3964f2e
4 changed files with 5 additions and 3 deletions
|
|
@ -37,7 +37,7 @@ public final class DuchessWaywardTavernkeep extends CardImpl {
|
|||
|
||||
// Hunters for Hire -- Whenever a creature you control deals combat damage to a player, put a quest counter on it.
|
||||
this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility(
|
||||
new AddCountersTargetEffect(CounterType.QUEST.createInstance()),
|
||||
new AddCountersTargetEffect(CounterType.QUEST.createInstance()).setText("put a quest counter on it"),
|
||||
StaticFilters.FILTER_CONTROLLED_A_CREATURE,
|
||||
false,
|
||||
SetTargetPointer.PERMANENT,
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@ public final class MutationalAdvantage extends CardImpl {
|
|||
);
|
||||
this.getSpellAbility().addEffect(
|
||||
new PreventAllDamageToAllEffect(Duration.EndOfTurn, filter)
|
||||
.setText("Prevent all damage that would be dealt to those permanents this turn")
|
||||
);
|
||||
this.getSpellAbility().addEffect(new ProliferateEffect());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -40,7 +40,8 @@ public final class RexCyberHound extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// Whenever Rex, Cyber-Hound deals combat damage to a player, they mill two cards and you get {E}{E}.
|
||||
Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(new MillCardsTargetEffect(2), false, true);
|
||||
Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(
|
||||
new MillCardsTargetEffect(2).setText("they mill two cards"), false, true);
|
||||
ability.addEffect(new GetEnergyCountersControllerEffect(2).concatBy("and"));
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
|
|||
|
|
@ -645,7 +645,7 @@ public final class StaticFilters {
|
|||
FILTER_CONTROLLED_UNTAPPED_CREATURES.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterControlledPermanent FILTER_CONTROLLED_PERMANENT_NON_LAND = new FilterControlledPermanent("nonland permanent");
|
||||
public static final FilterControlledPermanent FILTER_CONTROLLED_PERMANENT_NON_LAND = new FilterControlledPermanent("nonland permanent you control");
|
||||
|
||||
static {
|
||||
FILTER_CONTROLLED_PERMANENT_NON_LAND.add(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue