Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.51 KB | None | 0 0
  1. {
  2.   "startingRoom": "doorway",
  3.   "endingRoom": "restroom",
  4.   "rooms": [
  5.     {
  6.       "name": "doorway",
  7.       "description": "Your are in the doorway, you can see door",
  8.       "items": ["sign"],
  9.       "directions": [
  10.         {
  11.           "directionName": "♂♀♂",
  12.           "room": "door"
  13.         }
  14.       ]
  15.     },
  16.     {
  17.       "name": "door",
  18.       "description": "You entered the door, you can see boy♂next♂door(划掉), you can see kitchen, \u6666, ^&(*^)( ",
  19.       "items": ["金克拉", "key"],
  20.       "directions": [
  21.         {
  22.           "directionName": "back",
  23.           "room": "doorway"
  24.         },
  25.         {
  26.           "directionName": "left",
  27.           "room": "kitchen"
  28.         },
  29.         {
  30.           "directionName": "front",
  31.           "room": "\u6666"
  32.         },
  33.         {
  34.           "directionName": "&)(*^",
  35.           "room": "^&(*^)("
  36.         }
  37.       ]
  38.     },
  39.     {
  40.       "name": "kitchen",
  41.       "description": "You are in the kitchen.  I'm too lazy to come up with more things.",
  42.       "items": ["pizza", "swag"],
  43.       "directions": [
  44.         {
  45.           "directionName": "right",
  46.           "room": "door"
  47.         },
  48.         {
  49.           "directionName": "给\uD83D\uDC74爪巴",
  50.           "room": "somewhere"
  51.         }
  52.       ]
  53.     },
  54.     {
  55.       "name": "somewhere",
  56.       "description": "你\uD83D\uDC40你\uD83D\uDC34呢",
  57.       "items": ["pizza", "swag"],
  58.       "directions": [
  59.         {
  60.           "directionName": "给\uD83D\uDC74爪巴回去",
  61.           "room": "kitchen"
  62.         }
  63.       ]
  64.     },
  65.     {
  66.       "name": "晦",
  67.       "description": "You are in the 晦.  You can see nothing but 奥里给.",
  68.       "items": ["pizza"],
  69.       "directions": [
  70.         {
  71.           "directionName": "back",
  72.           "room": "door"
  73.         }
  74.       ]
  75.     },
  76.     {
  77.       "name": "^&(*^)(",
  78.       "description": "You are in ^&(*^)(.  You can see restroom.",
  79.       "items": ["USB-C connector", "grading rubric"],
  80.       "directions": [
  81.         {
  82.           "directionName": ")*(&……",
  83.           "room": "door"
  84.         },
  85.         {
  86.           "directionName": "HELL",
  87.           "room": "restroom"
  88.         }
  89.       ]
  90.     },
  91.     {
  92.       "name": "restroom",
  93.       "description": "You are in the restroom.  你看到老8️⃣\uD83D\uDCC4\uD83C\uDF0A\uD83D\uDCCF\uD83D\uDCA9.",
  94.       "items": ["bagel", "coffee"],
  95.       "directions": [
  96.         {
  97.           "directionName": "给\uD83D\uDC74爪巴",
  98.           "room": "^&(*^)("
  99.         }
  100.       ]
  101.     }
  102.   ]
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement