Implemented Psychic Battle

This commit is contained in:
L_J 2018-04-19 18:46:33 +00:00 committed by GitHub
parent 9f5249cc73
commit f64ec46742
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,6 +27,8 @@ import java.util.UUID;
* @author LevelX2
*/
public abstract class StackObjImpl implements StackObject {
private boolean targetChanged; // for Psychic Battle
/**
* Choose new targets for a stack Object
@ -271,4 +273,14 @@ public abstract class StackObjImpl implements StackObject {
@Override
public void removePTCDA() {
}
@Override
public boolean isTargetChanged() {
return targetChanged;
}
@Override
public void setTargetChanged(boolean targetChanged) {
this.targetChanged = targetChanged;
}
}