Introduced all types of Actions for clarity
This commit is contained in:
@@ -32,7 +32,7 @@ public class PlayerReconcilesAction implements Action {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Type getType() {
|
public Type getType() {
|
||||||
return Type.OTHER;
|
return Type.RECONCILE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ public class ResolveSkirmishDamageAction extends RequiredTriggerAction {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Type getType() {
|
public Type getType() {
|
||||||
return Type.OTHER;
|
return Type.RESOLVE_DAMAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -41,6 +41,6 @@ public class TransferPermanentAction extends ActivateCardAction {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Type getType() {
|
public Type getType() {
|
||||||
return Type.OTHER;
|
return Type.TRANSFER;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import com.gempukku.lotro.game.state.LotroGame;
|
|||||||
|
|
||||||
public interface Action {
|
public interface Action {
|
||||||
public enum Type {
|
public enum Type {
|
||||||
PLAY_CARD, SPECIAL_ABILITY, TRIGGER, OTHER
|
PLAY_CARD, SPECIAL_ABILITY, TRIGGER, TRANSFER, RECONCILE, RESOLVE_DAMAGE, OTHER
|
||||||
}
|
}
|
||||||
|
|
||||||
public Type getType();
|
public Type getType();
|
||||||
|
|||||||
Reference in New Issue
Block a user