mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Added Worldheart Phoenix (CFX set is 100%)
This commit is contained in:
@@ -12,6 +12,7 @@ import forge.GameEntity;
|
||||
import forge.Singletons;
|
||||
import forge.card.ability.AbilityUtils;
|
||||
import forge.card.cardfactory.CardFactoryUtil;
|
||||
import forge.card.spellability.OptionalCost;
|
||||
import forge.card.spellability.SpellAbility;
|
||||
import forge.game.player.Player;
|
||||
import forge.game.zone.Zone;
|
||||
@@ -320,6 +321,11 @@ public abstract class TriggerReplacementBase {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if (params.containsKey("AltCost")) {
|
||||
if (!this.getHostCard().isOptionalCostPaid(OptionalCost.AltCost)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -2829,7 +2829,7 @@ public class CardFactoryUtil {
|
||||
}
|
||||
}
|
||||
if (splitkw.length > 4) {
|
||||
desc = splitkw[4];
|
||||
desc = !splitkw[4].equals("no desc") ? splitkw[4] : "";
|
||||
}
|
||||
String abStr = "AB$ ChangeZone | Cost$ 0 | Hidden$ True | Origin$ All | Destination$ Battlefield"
|
||||
+ "| Defined$ ReplacedCard | SubAbility$ ETBCounterDBSVar";
|
||||
|
||||
Reference in New Issue
Block a user