summaryrefslogtreecommitdiff
path: root/test.stage
blob: 2b6e567849a1a1c168a60a0172dd01eaec4ec5f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

game.title = "Demo game";
game.author = "Mike Buland";
game.version = 1;
game.revision = 0;
game.start = <<start>>;

global
{
	command: "eat" object
	{
		display(object);
	}
}

situation <<start>>
{
	setup
	{
		name = "Bob";
		display("This is the setup phase for start, " + name);
		display("???");
	}

	enter
	{
		display('''This is the enter part of the start situation''');
	}
}

situation <<stuff>>
{
	enter
	{
		display('''Entered stuff''');
	}
}