1
0
Fork 0
mirror of https://gitlab.com/Oreolek/salet.git synced 2024-07-07 01:04:25 +03:00
salet/game/story.coffee

29 lines
621 B
CoffeeScript

# Your game goes here
dialogue "Option 1", "start", "secretary", """
No spoilers!
"""
dialogue "Option 2", "start", "secretary", """
No spoilers!
"""
room "university-start",
tags: ["secretary"]
ways: ["supermarket"]
optionText: "Leave the University"
before: () ->
document.getElementById("intro").innerHTML = ""
document.getElementById("content").innerHTML = ""
undum.game.situations["supermarket"].destination()
"""
You leave the University.
"""
content: """
Okay, now to the supermarket.
"""
room "supermarket",
content: """
A trendy supermarket.
"""