mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Implemented Psychic Battle
This commit is contained in:
parent
9f5249cc73
commit
f64ec46742
1 changed files with 12 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue