forked from External/mage
* Added some cards (not finished because land replacement effects need still some work).
This commit is contained in:
parent
0115052b81
commit
ae4c07da9d
28 changed files with 1609 additions and 106 deletions
|
|
@ -19,12 +19,12 @@ public enum PhaseStep {
|
|||
END_TURN ("End Turn", 11),
|
||||
CLEANUP ("Cleanup", 12);
|
||||
|
||||
private String text;
|
||||
private final String text;
|
||||
|
||||
/**
|
||||
* Index is used for game state scoring system.
|
||||
*/
|
||||
private int index;
|
||||
private final int index;
|
||||
|
||||
PhaseStep(String text, int index) {
|
||||
this.text = text;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue