[RIX] Fixed set card [RIX] Added 5 cards.

This commit is contained in:
LevelX2 2018-01-07 13:29:40 +01:00
parent e997022de6
commit 0e119ffa01
9 changed files with 524 additions and 0 deletions

View file

@ -75,6 +75,9 @@ public class SacrificeSourceUnlessConditionEffect extends OneShotEffect {
@Override
public String getText(Mode mode) {
if (staticText != null && !staticText.isEmpty()) {
return staticText;
}
StringBuilder sb = new StringBuilder("sacrifice {this} unless ");
sb.append(condition.toString());
return sb.toString();