mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Added Whipgrass Entangler (the last one for Legions set)
This commit is contained in:
@@ -82,6 +82,8 @@ public class StaticAbilityCantAttackBlock {
|
||||
costString = Integer.toString(CardFactoryUtil.xCount(hostCard, hostCard.getSVar("X")));
|
||||
} else if ("Y".equals(costString)) {
|
||||
costString = Integer.toString(CardFactoryUtil.xCount(hostCard, hostCard.getSVar("Y")));
|
||||
} else if (params.containsKey("References")) {
|
||||
costString = Integer.toString(CardFactoryUtil.xCount(hostCard, hostCard.getSVar(params.get("References"))));
|
||||
}
|
||||
|
||||
final Cost cost = new Cost(costString, true);
|
||||
@@ -116,6 +118,8 @@ public class StaticAbilityCantAttackBlock {
|
||||
costString = Integer.toString(CardFactoryUtil.xCount(hostCard, hostCard.getSVar("X")));
|
||||
} else if ("Y".equals(costString)) {
|
||||
costString = Integer.toString(CardFactoryUtil.xCount(hostCard, hostCard.getSVar("Y")));
|
||||
} else if (params.containsKey("References")) {
|
||||
costString = Integer.toString(CardFactoryUtil.xCount(hostCard, hostCard.getSVar(params.get("References"))));
|
||||
}
|
||||
|
||||
final Cost cost = new Cost(costString, true);
|
||||
|
||||
Reference in New Issue
Block a user