|
|
@ -12,6 +12,11 @@ public class Ability implements Descriptiable, AdventurePointsPriceLabeled, HasR
|
|
|
|
private final int apCosts;
|
|
|
|
private final int apCosts;
|
|
|
|
private final Requirement requirement;
|
|
|
|
private final Requirement requirement;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Ability(Description description, int apCosts, Requirement requirement) {
|
|
|
|
|
|
|
|
this.description = description;
|
|
|
|
|
|
|
|
this.apCosts = apCosts;
|
|
|
|
|
|
|
|
this.requirement = requirement;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public Description getDescription() {
|
|
|
|
public Description getDescription() {
|
|
|
|