mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
fix text: Mari, the Killing Quill (#11360)
Updated the text so it shows correctly on Mari as well as any other creatures that have the effect.
This commit is contained in:
parent
80ca466a0d
commit
c461191da9
1 changed files with 4 additions and 2 deletions
|
|
@ -69,8 +69,8 @@ public class MariTheKillingQuill extends CardImpl {
|
|||
// NOTE: Optional part is handled inside the effect
|
||||
Ability dealsDamageAbility = new DealsCombatDamageToAPlayerTriggeredAbility(new MariTheKillingQuillDealsDamageEffect(), false, true);
|
||||
Effect drawAndTreasureEffect = new GainAbilityControlledEffect(dealsDamageAbility, Duration.WhileOnBattlefield, filter);
|
||||
drawAndTreasureEffect.setText(
|
||||
"\"Whenever this creature deals combat damage to a player, you may remove a hit counter from a card that player owns in exile. " +
|
||||
drawAndTreasureEffect.setText("\"Whenever this creature deals combat damage to a player, " +
|
||||
"you may remove a hit counter from a card that player owns in exile. " +
|
||||
"If you do, draw a card and create two Treasure tokens.\"");
|
||||
drawAndTreasureEffect.concatBy("and");
|
||||
|
||||
|
|
@ -93,6 +93,8 @@ class MariTheKillingQuillDealsDamageEffect extends OneShotEffect {
|
|||
|
||||
MariTheKillingQuillDealsDamageEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "you may remove a hit counter from a card that player owns in exile. " +
|
||||
"If you do, draw a card and create two Treasure tokens.";
|
||||
}
|
||||
|
||||
private MariTheKillingQuillDealsDamageEffect(final MariTheKillingQuillDealsDamageEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue