blob: 650f25365ffca625a9fb5d48cfc6df8a5e6471b8 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
(fate_version 1)
(require type/character.fate)
(declare_variable local character oscar)
(declare_variable local character carla)
(declare_variable local character simon)
(declare_variable local character julie)
(declare_variable local character statue)
(require include/locations.fate)
(set_fields oscar
(name Oscar)
(agility 50)
(perception 50)
(money 20)
)
(add (ref oscar) room0.occupants)
(set_fields carla
(name Carla)
(agility 75)
(perception 35)
(money 7)
)
(add (ref carla) room1.occupants)
(set_fields simon
(name Simon)
(agility 35)
(perception 75)
(money 80)
)
(add (ref simon) room2.occupants)
(set_fields julie
(name Julie)
(agility 60)
(perception 60)
(money 90)
)
(add (ref julie) corridor.occupants)
(set_fields statue
(name ( A oddly human shaped statue, with clothes adorned ))
(agility 0)
(perception 0)
(money 30)
)
(add (ref statue) corridor.occupants)
|