mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
[C15] Added Scourge of Nel Toth.
This commit is contained in:
parent
bfb54ca112
commit
7044e58231
12 changed files with 179 additions and 21 deletions
|
|
@ -43,6 +43,8 @@ import mage.abilities.Modes;
|
|||
import mage.abilities.SpellAbility;
|
||||
import mage.abilities.TriggeredAbility;
|
||||
import mage.abilities.costs.AlternativeSourceCosts;
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.abilities.costs.Costs;
|
||||
import mage.abilities.costs.VariableCost;
|
||||
import mage.abilities.costs.mana.ManaCost;
|
||||
import mage.abilities.costs.mana.ManaCosts;
|
||||
|
|
@ -1122,8 +1124,8 @@ public class TestPlayer implements Player {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void setCastSourceIdWithAlternateMana(UUID sourceId, ManaCosts manaCosts) {
|
||||
computerPlayer.setCastSourceIdWithAlternateMana(sourceId, manaCosts);
|
||||
public void setCastSourceIdWithAlternateMana(UUID sourceId, ManaCosts manaCosts, Costs costs) {
|
||||
computerPlayer.setCastSourceIdWithAlternateMana(sourceId, manaCosts, costs);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -1136,6 +1138,11 @@ public class TestPlayer implements Player {
|
|||
return computerPlayer.getCastSourceIdManaCosts();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Costs<Cost> getCastSourceIdCosts() {
|
||||
return computerPlayer.getCastSourceIdCosts();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInPayManaMode() {
|
||||
return computerPlayer.isInPayManaMode();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue