| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2020-07-20 00:51:37 +0200 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2020-07-20 00:51:37 +0200 | 
| commit | 39fc3eb50f3984bb128439a2cf190e51267529d9 (patch) | |
| tree | b8a36bad9b60a480c1b6fafcbd73200cd498e354 /data/examples/the_thief/include/locations.fate | |
| parent | 99171d9707c58c4f9841a00bf6fd22c4660a81e4 (diff) | |
Simplifies refs, adds remaining missing stuff.
Diffstat (limited to 'data/examples/the_thief/include/locations.fate')
| -rw-r--r-- | data/examples/the_thief/include/locations.fate | 39 | 
1 files changed, 39 insertions, 0 deletions
| diff --git a/data/examples/the_thief/include/locations.fate b/data/examples/the_thief/include/locations.fate index d7beb18..e46c504 100644 --- a/data/examples/the_thief/include/locations.fate +++ b/data/examples/the_thief/include/locations.fate @@ -1,2 +1,41 @@  (fate_version 1) +(require type/location.fate) + +(declare_variable local location room0) +(declare_variable local location room1) +(declare_variable local location room2) +(declare_variable local location corridor) + +(set_fields room0 +   (name ( Room 0 )) +   (description +      ( An luxurious bedroom, well lit. ) +   ) +   (luminosity 80) +) + +(set_fields room1 +   (name ( Room 1 )) +   (description +      ( An overly large kitchen, unevenly lit. ) +   ) +   (luminosity 35) +) + +(set_fields room2 +   (name ( Room 2 )) +   (description +      ( An tiny and messy study, unlit. ) +   ) +   (luminosity 0) +) + +(set_fields corridor +   (name Corridor) +   (description +      ( A long corridor, with many decorations, and many hiding places. ) +   ) +   (luminosity 50) +) + | 


