mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[MH2] Implemented Necrogoyf
This commit is contained in:
parent
9fda9563ac
commit
f6cdbd6b4d
3 changed files with 62 additions and 4 deletions
|
|
@ -1,23 +1,24 @@
|
|||
package mage.abilities.dynamicvalue.common;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.dynamicvalue.DynamicValue;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author North
|
||||
*/
|
||||
public class CardsInAllGraveyardsCount implements DynamicValue {
|
||||
|
||||
private FilterCard filter;
|
||||
private final FilterCard filter;
|
||||
|
||||
public CardsInAllGraveyardsCount() {
|
||||
this(new FilterCard());
|
||||
this(StaticFilters.FILTER_CARD);
|
||||
}
|
||||
|
||||
public CardsInAllGraveyardsCount(FilterCard filter) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue