mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
40 lines
888 B
Plaintext
40 lines
888 B
Plaintext
|
|
Constant Story "My Story Name";
|
|
|
|
Constant Headline
|
|
"^This is My Story^
|
|
By New Writer (2020)^";
|
|
|
|
Constant MAX_SCORE 100;
|
|
|
|
Release 1;
|
|
|
|
Include "Parser";
|
|
Include "VerbLib";
|
|
|
|
!-------------------------------------------------------------------------------
|
|
! Initialise
|
|
!-------------------------------------------------------------------------------
|
|
|
|
[ Initialise;
|
|
|
|
location = Main_Lobby;
|
|
|
|
];
|
|
|
|
! ----------------------------------------------------------------------------
|
|
! Locations
|
|
! ----------------------------------------------------------------------------
|
|
|
|
Object Main_Lobby "Main Lobby"
|
|
with description
|
|
"You are in the main lobby.",
|
|
has light;
|
|
|
|
! ----------------------------------------------------------------------------
|
|
! Grammar
|
|
! ----------------------------------------------------------------------------
|
|
|
|
Include "Grammar";
|
|
|