Add Torgaar (DOM)

This commit is contained in:
Chris H
2018-04-17 21:25:25 -04:00
parent 29292956b6
commit f3afaf9c51
2 changed files with 17 additions and 0 deletions

View File

@@ -552,6 +552,10 @@ public class CardFactoryUtil {
return doXMath(player.getCardsIn(ZoneType.Battlefield).size(), m, source);
}
if (value.contains("StartingLife")) {
return doXMath(player.getStartingLife(), m, source);
}
if (value.contains("LifeTotal")) {
return doXMath(player.getLife(), m, source);
}