Skip to content

Instantly share code, notes, and snippets.

@oestrich
Last active February 7, 2020 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oestrich/a162d768e44a3709451f0884669d8547 to your computer and use it in GitHub Desktop.
Save oestrich/a162d768e44a3709451f0884669d8547 to your computer and use it in GitHub Desktop.
zones "claybrook" {
name = "Clay Brook"
}
rooms "town_square" {
name = "Town Square"
description = "You are in the town square."
features = [
{
keyword = "sign"
short = "Next to the ${npcs.town_crier} stands a sign."
long = "The sign reads, \"You figured out how to look at things!\""
}
]
}
room_exits "town_square" {
room_id = rooms.town_square.id
north = rooms.marketplace.id
east = eagles_nest.rooms.highway.id
}
rooms "marketplace" {
name = "Marketplace"
description = "There are sellers hawking their wares all around you."
}
room_exits "marketplace" {
room_id = rooms.marketplace.id
south = rooms.town_square.id
}
npc "town_crier" {
name = "Town Crier"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment