mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 22:42:03 -08:00
[RIX] Added Vona's Hunger.
This commit is contained in:
parent
859242279e
commit
43c732c751
13 changed files with 474 additions and 48 deletions
|
|
@ -49,6 +49,8 @@ import mage.choices.Choice;
|
|||
import mage.constants.*;
|
||||
import mage.counters.Counter;
|
||||
import mage.counters.Counters;
|
||||
import mage.designations.Designation;
|
||||
import mage.designations.DesignationType;
|
||||
import mage.filter.Filter;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.StaticFilters;
|
||||
|
|
@ -1835,7 +1837,6 @@ public class TestPlayer implements Player {
|
|||
return computerPlayer.rollDice(game, appliedEffects, numSides);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public List<Permanent> getAvailableAttackers(Game game) {
|
||||
return computerPlayer.getAvailableAttackers(game);
|
||||
|
|
@ -2301,6 +2302,21 @@ public class TestPlayer implements Player {
|
|||
return computerPlayer.moveCards(cards, toZone, source, game, tapped, faceDown, byOwner, appliedEffects);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasDesignation(DesignationType designationName) {
|
||||
return computerPlayer.hasDesignation(designationName);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addDesignation(Designation designation) {
|
||||
computerPlayer.addDesignation(designation);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Designation> getDesignations() {
|
||||
return computerPlayer.getDesignations();
|
||||
}
|
||||
|
||||
public void setAIPlayer(boolean AIPlayer) {
|
||||
this.AIPlayer = AIPlayer;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -45,6 +45,8 @@ import mage.choices.Choice;
|
|||
import mage.constants.*;
|
||||
import mage.counters.Counter;
|
||||
import mage.counters.Counters;
|
||||
import mage.designations.Designation;
|
||||
import mage.designations.DesignationType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.game.Game;
|
||||
import mage.game.Graveyard;
|
||||
|
|
@ -656,7 +658,6 @@ public class PlayerStub implements Player {
|
|||
return 1;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void discard(int amount, Ability source, Game game) {
|
||||
|
||||
|
|
@ -1252,4 +1253,19 @@ public class PlayerStub implements Player {
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasDesignation(DesignationType designationName) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addDesignation(Designation designation) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Designation> getDesignations() {
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue