Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. {
  2. "startingRoom": "LockedRoom",
  3. "endingRoom": "Outside",
  4. "rooms": [
  5. {
  6. "name": "LockedRoom",
  7. "description": "You are trapped in a room with a locked door. There is a key on the table.",
  8. "directions": [
  9. {
  10. "directionName": "North",
  11. "room": "Outside",
  12. "enabled": "false",
  13. "validKeyNames": [
  14. "key"
  15. ]
  16. }
  17. ],
  18. "items": [
  19. {
  20. "name": "key"
  21. }
  22. ]
  23. },
  24. {
  25. "name": "Outside",
  26. "description": "You escaped the locked room and it is bright and sunny outside!",
  27. "directions": [],
  28. "items": []
  29. }
  30. ],
  31. "player": {
  32. "items": []
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement