[HOU] Added 4 cards.

This commit is contained in:
LevelX2 2017-06-29 17:55:48 +02:00
parent c2d2ab2148
commit c8e1a9d854
7 changed files with 571 additions and 149 deletions

View file

@ -409,8 +409,9 @@ public interface Ability extends Controllable, Serializable {
* true = show the rule at the top position of the rules
*
* @param ruleAtTheTop
* @return
*/
void setRuleAtTheTop(boolean ruleAtTheTop);
Ability setRuleAtTheTop(boolean ruleAtTheTop);
/**
* Returns true if this ability has to work also with face down object (set

View file

@ -975,8 +975,9 @@ public abstract class AbilityImpl implements Ability {
}
@Override
public void setRuleAtTheTop(boolean ruleAtTheTop) {
public Ability setRuleAtTheTop(boolean ruleAtTheTop) {
this.ruleAtTheTop = ruleAtTheTop;
return this;
}
@Override