diff --git a/src/main/Case.java b/src/main/Case.java
index 1f4f7b66095e3fb33f17268680063b2d5d994fb3..34bfb498b9db2d2aa3294322b6f9b760cd69b088 100644
--- a/src/main/Case.java
+++ b/src/main/Case.java
@@ -99,21 +99,21 @@ public class Case {
 	}
 	
 	public String toString() {
-/*
+
 		if (!this.isDecouverte()) {
 			return "~ ";
 		}
-		else */if (this.getItem() != null && this.getItem().getName().equalsIgnoreCase("crown")) {
+		else if (this.getItem() != null && this.getItem().getName().equalsIgnoreCase("crown")) {
 			return "c ";
 		}
 		else if (this.type == Type.GRASS) {
 			return ". ";
 		}
 		else if (this.type == Type.MOUNTAIN) {
-			return "m ";
+			return "Ѧ ";
 		}
 		else if (this.type == Type.FORT) {
-			return "t ";
+			return "♜ ";
 		}
 		else if (this.type == Type.CAMP) {
 			return "O ";
diff --git a/src/main/Type.java b/src/main/Type.java
index bdfacc4ab2b794f54a2785d7d71be011f0b47d1e..9f0fb3e27d9a19afeccdf5a02fa53de2a056e92b 100644
--- a/src/main/Type.java
+++ b/src/main/Type.java
@@ -1,5 +1,5 @@
 package main;
 
 public enum Type {
-	UNITE,GRASS, MOUNTAIN, CAMP, FORT;
+	UNITE,GRASS, MOUNTAIN, CAMP, VILLAGE, FORT;
 }