Third dozen of FDN/J25 cards (#6463)

This commit is contained in:
Fulgur14
2024-10-29 21:44:44 +01:00
committed by GitHub
parent 3569dd37f1
commit d54b48ec1d
17 changed files with 140 additions and 7 deletions

View File

@@ -49,6 +49,8 @@ public enum CounterEnumType {
AWAKENING("AWAKE", 0, 231, 79),
BAIT("BAIT", 120, 100, 60),
BLAZE("BLAZE", 255, 124, 82),
BLESSING("BLESS", 251, 0, 94),

View File

@@ -148,6 +148,10 @@ public class CostTapType extends CostPartWithList {
String type = this.getType();
boolean sameType = false;
if (type.equals("OriginalHost")) {
return ability.getOriginalHost().canTap();
}
if (type.contains(".sharesCreatureTypeWith")) {
sameType = true;
type = TextUtil.fastReplace(type, ".sharesCreatureTypeWith", "");