diff --git a/index.t b/index.t
index f555f9f..68a5889 100644
--- a/index.t
+++ b/index.t
@@ -28,6 +28,7 @@ gameMain: GameMainDef
#include "locations/startingRoom.t"
#include "locations/secondRoom.t"
#include "locations/thirdRoom.t"
+#include "locations/island.t"
#include "items/note.t"
#include "items/fruitBox.t"
diff --git a/items/locker.t b/items/locker.t
index c8762aa..5f26948 100644
--- a/items/locker.t
+++ b/items/locker.t
@@ -44,8 +44,8 @@ locker: LockableContainer, Fixture
a fragment of the physical world amid the boundless,
artificial cosmos, with only the faint static of data streams
breaking the eerie silence.\b
- You arrived to the Strange Island in the Middle Of Nowhere";
- me.scriptedTravelTo(startingRoom);
+ You arrived to the Strange Island in the Middle Of Nowhere. ";
+ me.moveIntoForTravel(island);
}
}
isListed = true
diff --git a/locations/island.t b/locations/island.t
new file mode 100644
index 0000000..0612fd2
--- /dev/null
+++ b/locations/island.t
@@ -0,0 +1,8 @@
+island: OutdoorRoom 'Strange Island'
+ "The Strange Island in the Middle of Nowhere in cyberspace was a solitary,
+ jagged patch of stone-like ground suspended in an endless digital void.
+ Surrounded by a sea of shifting neon colors and data fragments,
+ it glowed with faint, pulsing symbols.\b
+ The air hummed with an electric tension,
+ as if the island held an ancient secret waiting to be discovered. "
+;