mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[MOM] Implement Scrappy Bruiser
This commit is contained in:
parent
8b7e615747
commit
b120ce0fa9
3 changed files with 59 additions and 2 deletions
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.abilities;
|
||||
|
||||
import mage.abilities.effects.Effect;
|
||||
|
|
@ -7,7 +6,6 @@ import mage.constants.Zone;
|
|||
import mage.game.Game;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public abstract class DelayedTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
|
@ -59,6 +57,12 @@ public abstract class DelayedTriggeredAbility extends TriggeredAbilityImpl {
|
|||
public void init(Game game) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public DelayedTriggeredAbility setTriggerPhrase(String triggerPhrase) {
|
||||
super.setTriggerPhrase(triggerPhrase);
|
||||
return this;
|
||||
}
|
||||
|
||||
public boolean isInactive(Game game) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue