Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. zones "claybrook" {
  2. name = "Clay Brook"
  3. }
  4.  
  5. rooms "town_square" {
  6. name = "Town Square"
  7. description = "You are in the town square."
  8.  
  9. features = [
  10. {
  11. keyword = "sign"
  12. short = "Next to the ${npcs.town_crier} stands a sign."
  13. long = "The sign reads, \"You figured out how to look at things!\""
  14. }
  15. ]
  16. }
  17.  
  18. room_exits "town_square" {
  19. room_id = "${rooms.town_square.id}"
  20.  
  21. north = "${rooms.marketplace.id}"
  22. east = "${eagles_nest.rooms.highway.id}"
  23. }
  24.  
  25. rooms "marketplace" {
  26. name = "Marketplace"
  27. description = "There are sellers hawking their wares all around you."
  28. }
  29.  
  30. room_exits "marketplace" {
  31. room_id = "${rooms.marketplace.id}"
  32.  
  33. south = "${rooms.town_square.id}"
  34. }
  35.  
  36. npc "town_crier" {
  37. name = "Town Crier"
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement