mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[TOR] Implemented Carrion Rats and Carrion Wurm
This commit is contained in:
parent
b5ccc44afc
commit
c0aeb44e5b
5 changed files with 193 additions and 6 deletions
|
|
@ -21,11 +21,15 @@ import mage.target.TargetCard;
|
|||
public class TargetCardInYourGraveyard extends TargetCard {
|
||||
|
||||
public TargetCardInYourGraveyard() {
|
||||
this(1, 1, StaticFilters.FILTER_CARD_FROM_YOUR_GRAVEYARD);
|
||||
this(1);
|
||||
}
|
||||
|
||||
public TargetCardInYourGraveyard(int numTargets) {
|
||||
this(numTargets, numTargets);
|
||||
}
|
||||
|
||||
public TargetCardInYourGraveyard(FilterCard filter) {
|
||||
this(1, 1, filter);
|
||||
this(1, filter);
|
||||
}
|
||||
|
||||
public TargetCardInYourGraveyard(int numTargets, FilterCard filter) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue