mirror of
https://github.com/correl/mage.git
synced 2025-03-16 09:16:26 -09:00
Fix Mudbutton Clanger (#6810)
* Fix Mudbutton Clanger Should get +1/+1 until end of turn, not +1/+1 counters. * Update MudbuttonClanger.java Fix imports. * Update MudbuttonClanger.java Also import Duration (and remove CounterType, which is no longer needed)
This commit is contained in:
parent
cb3757d0db
commit
77eadf92a5
1 changed files with 3 additions and 3 deletions
|
@ -4,12 +4,12 @@ package mage.cards.m;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.abilityword.KinshipAbility;
|
import mage.abilities.abilityword.KinshipAbility;
|
||||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.counters.CounterType;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -27,7 +27,7 @@ public final class MudbuttonClanger extends CardImpl {
|
||||||
|
|
||||||
// Kinship - At the beginning of your upkeep, you may look at the top card of your library. If it shares a creature type with Mudbutton Clanger, you may reveal it.
|
// Kinship - At the beginning of your upkeep, you may look at the top card of your library. If it shares a creature type with Mudbutton Clanger, you may reveal it.
|
||||||
// If you do, Mudbutton Clanger gets +1/+1 until end of turn.
|
// If you do, Mudbutton Clanger gets +1/+1 until end of turn.
|
||||||
this.addAbility(new KinshipAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance())));
|
this.addAbility(new KinshipAbility(new BoostSourceEffect(1, 1, Duration.EndOfTurn)));
|
||||||
}
|
}
|
||||||
|
|
||||||
public MudbuttonClanger(final MudbuttonClanger card) {
|
public MudbuttonClanger(final MudbuttonClanger card) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue