mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[MOM] Implement Vorinclex
This commit is contained in:
parent
25e8cf7cef
commit
c025349791
4 changed files with 190 additions and 2 deletions
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
package mage.abilities.effects.common.counter;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.DelayedTriggeredAbility;
|
||||
import mage.abilities.Mode;
|
||||
|
|
@ -14,8 +13,9 @@ import mage.game.permanent.Permanent;
|
|||
import mage.target.Target;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LoneFox
|
||||
*/
|
||||
public class DistributeCountersEffect extends OneShotEffect {
|
||||
|
|
@ -25,6 +25,10 @@ public class DistributeCountersEffect extends OneShotEffect {
|
|||
private final boolean removeAtEndOfTurn;
|
||||
private final String targetDescription;
|
||||
|
||||
public DistributeCountersEffect(CounterType counterType, int amount, String targetDescription) {
|
||||
this(counterType, amount, false, targetDescription);
|
||||
}
|
||||
|
||||
public DistributeCountersEffect(CounterType counterType, int amount, boolean removeAtEndOfTurn, String targetDescription) {
|
||||
super(Outcome.BoostCreature);
|
||||
this.counterType = counterType;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue