mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
Merge branch 'adaptReduceCost' into 'master'
Adapt: add ReduceCost for Pteramander See merge request core-developers/forge!1267
This commit is contained in:
9
forge-gui/res/cardsfolder/upcoming/pteramander.txt
Normal file
9
forge-gui/res/cardsfolder/upcoming/pteramander.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
Name:Pteramander
|
||||
ManaCost:U
|
||||
Types:Creature Salamander Drake
|
||||
PT:1/1
|
||||
K:Flying
|
||||
K:Adapt:4:7 U:X
|
||||
SVar:X:Count$ValidGraveyard Instant.YouOwn,Sorcery.YouOwn
|
||||
DeckHas:Ability$Counters
|
||||
Oracle:Flying\n{7}{U}: Adapt 4. This ability costs {1} less to activate for each instant and sorcery card in your graveyard. (If this creature has no +1/+1 counters on it, put four +1/+1 counters on it.)
|
||||
@@ -33,7 +33,7 @@ public class InputSelectEntitiesFromList<T extends GameEntity> extends InputSele
|
||||
if (min > validChoices.size()) {
|
||||
System.out.println(String.format("Trying to choose at least %d things from a list with only %d things!", min, validChoices.size()));
|
||||
}
|
||||
PlayerZoneUpdates zonesToUpdate = new PlayerZoneUpdates();
|
||||
final PlayerZoneUpdates zonesToUpdate = new PlayerZoneUpdates();
|
||||
for (final GameEntity c : validChoices) {
|
||||
final Zone cz = (c instanceof Card) ? ((Card) c).getZone() : null ;
|
||||
zonesToUpdate.add(new PlayerZoneUpdate(cz.getPlayer().getView(),cz.getZoneType()));
|
||||
|
||||
Reference in New Issue
Block a user