Merge pull request #3573 from spjspj/master

Implement 2 cards (HOU)
This commit is contained in:
spjspj 2017-07-03 09:09:02 +10:00 committed by GitHub
commit 65bc4ff5a4

View file

@ -59,6 +59,11 @@ public class EternalizeAbility extends ActivatedAbilityImpl {
setRule(cost, card);
}
public EternalizeAbility(Cost cost, Card card, String rule) {
this(cost, card);
this.rule = rule;
}
public EternalizeAbility(final EternalizeAbility ability) {
super(ability);
this.rule = ability.rule;