mirror of
https://github.com/He4eT/simple-tads-game.git
synced 2026-05-04 17:07:24 +00:00
Add strange island
This commit is contained in:
parent
39f24e3ad4
commit
f17409cc53
3 changed files with 11 additions and 2 deletions
1
index.t
1
index.t
|
|
@ -28,6 +28,7 @@ gameMain: GameMainDef
|
||||||
#include "locations/startingRoom.t"
|
#include "locations/startingRoom.t"
|
||||||
#include "locations/secondRoom.t"
|
#include "locations/secondRoom.t"
|
||||||
#include "locations/thirdRoom.t"
|
#include "locations/thirdRoom.t"
|
||||||
|
#include "locations/island.t"
|
||||||
|
|
||||||
#include "items/note.t"
|
#include "items/note.t"
|
||||||
#include "items/fruitBox.t"
|
#include "items/fruitBox.t"
|
||||||
|
|
|
||||||
|
|
@ -44,8 +44,8 @@ locker: LockableContainer, Fixture
|
||||||
a fragment of the physical world amid the boundless,
|
a fragment of the physical world amid the boundless,
|
||||||
artificial cosmos, with only the faint static of data streams
|
artificial cosmos, with only the faint static of data streams
|
||||||
breaking the eerie silence.\b
|
breaking the eerie silence.\b
|
||||||
You arrived to the <b>Strange Island in the Middle Of Nowhere</b>";
|
You arrived to the <b>Strange Island in the Middle Of Nowhere</b>. ";
|
||||||
me.scriptedTravelTo(startingRoom);
|
me.moveIntoForTravel(island);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
isListed = true
|
isListed = true
|
||||||
|
|
|
||||||
8
locations/island.t
Normal file
8
locations/island.t
Normal file
|
|
@ -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. "
|
||||||
|
;
|
||||||
Loading…
Add table
Add a link
Reference in a new issue