forked from External/mage
updated abilities with x targets
This commit is contained in:
parent
cd3e038223
commit
856dcb54d5
10 changed files with 76 additions and 13 deletions
|
|
@ -99,7 +99,7 @@ public abstract class AbilityImpl implements Ability {
|
|||
protected List<Watcher> watchers = null;
|
||||
protected List<Ability> subAbilities = null;
|
||||
protected boolean canFizzle = true;
|
||||
protected TargetAdjustment targetAdjustment;
|
||||
protected TargetAdjustment targetAdjustment = TargetAdjustment.NONE;
|
||||
|
||||
public AbilityImpl(AbilityType abilityType, Zone zone) {
|
||||
this.id = UUID.randomUUID();
|
||||
|
|
@ -148,6 +148,7 @@ public abstract class AbilityImpl implements Ability {
|
|||
this.sourceObject = ability.sourceObject;
|
||||
this.sourceObjectZoneChangeCounter = ability.sourceObjectZoneChangeCounter;
|
||||
this.canFizzle = ability.canFizzle;
|
||||
this.targetAdjustment = ability.targetAdjustment;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue