30public enum BuildableMap implements GenericVoid<Player> {
31 SMALL_CAVE(
"Small cave", 0, 0,
new Position(3305, 9833)) {
33 public void execute(
Player player) {
38 THRONE_ROOM(
"Throne room", 90, 15_000000,
new Position(2036, 4538)) {
40 public void execute(
Player player) {
46 private final String name;
47 private final int level;
48 private final int cost;
51 BuildableMap(String name,
int level,
int cost,
Position position) {
55 this.position = position;
58 public String getName() {
62 public int getLevel() {
66 public int getCost() {