diff --git a/src/main/java/com/comandante/creeper/Items/ItemType.java b/src/main/java/com/comandante/creeper/Items/ItemType.java
index 2765be270f70af92a481a5cc152f5b6b96ce3df3..2a1cad5905715cde7e01ee20c8bd650884c0bb59 100644
--- a/src/main/java/com/comandante/creeper/Items/ItemType.java
+++ b/src/main/java/com/comandante/creeper/Items/ItemType.java
@@ -10,7 +10,7 @@ public enum ItemType {
     UNKNOWN(0, "", "", "", false, 0, 0),
     KEY(1, "key", new StringBuilder()
             .append(YELLOW)
-            .append("A shiny gold [key]")
+            .append("    a shiny gold key")
             .append(RESET).toString(),
             "A basic key with nothing really remarkable other than its made of gold.",
             false,
@@ -18,7 +18,7 @@ public enum ItemType {
             2),
     BOOK(2, "book", new StringBuilder()
             .append(RED)
-            .append("An ancient leather bound [book]")
+            .append("    an ancient leather bound book")
             .append(RESET).toString(),
             "An ancient book with mysterious engravings.",
             false,
@@ -26,7 +26,7 @@ public enum ItemType {
             2),
     BEER(3, "beer", new StringBuilder()
             .append(YELLOW)
-            .append("A cold frosty [beer]")
+            .append("    a cold frosty beer")
             .append(RESET).toString(),
             "A coors light.",
             true,
diff --git a/src/main/java/com/comandante/creeper/builder/RoomBuilders.java b/src/main/java/com/comandante/creeper/builder/RoomBuilders.java
index 6a69c69609fe51c935f587984859dce533414d3c..ee1e70041b70ef7957a1e0971f0804d9a0d37e33 100644
--- a/src/main/java/com/comandante/creeper/builder/RoomBuilders.java
+++ b/src/main/java/com/comandante/creeper/builder/RoomBuilders.java
@@ -45,13 +45,13 @@ public class RoomBuilders {
         entityManager.addEntity(new BasicRoom(
                 3,
                 "Training Field",
-                Optional.of(7),
+                Optional.of(8),
                 Optional.of(2),
                 Optional.<Integer>absent(),
                 Optional.<Integer>absent(),
                 Optional.<Integer>absent(),
                 Optional.<Integer>absent(),
-                "You are standing on the center of a massive training field. You see a large field with a track surrounding it. A main pathway connects from the Port to the north to the main Federation building. Soldiers of all ranks are going about their business here.\r\n"));
+                "You are standing on the center of a massive training field. You see a large field with a track surrounding it. A main pathway connects from back gate to the north to the main Federation building. Soldiers of all ranks are going about their business here.\r\n"));
 
         entityManager.addEntity(new BasicRoom(
                 4,
@@ -88,15 +88,26 @@ public class RoomBuilders {
 
         entityManager.addEntity(new BasicRoom(
                 7,
-                "Port",
+                "Train Station",
                 Optional.of(100),
-                Optional.of(3),
+                Optional.of(8),
                 Optional.of(200),
                 Optional.of(300),
                 Optional.<Integer>absent(),
                 Optional.<Integer>absent(),
                 "You are standing in the main port of the Federation Encampment.\r\n"));
 
+        entityManager.addEntity(new BasicRoom(
+                8,
+                "Federation Encampment Back Gate",
+                Optional.of(7),
+                Optional.of(3),
+                Optional.<Integer>absent(),
+                Optional.<Integer>absent(),
+                Optional.<Integer>absent(),
+                Optional.<Integer>absent(),
+                "You are standing outside of the Federation Training Encampment. To the North is the Seattle train station.\r\n"));
+
     }
 
     public static void buildNeoPortland(EntityManager entityManager){