* Added some cards (not finished because land replacement effects need still some work).

This commit is contained in:
LevelX2 2014-06-30 08:33:39 +02:00
parent 0115052b81
commit ae4c07da9d
28 changed files with 1609 additions and 106 deletions

View file

@ -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;