Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.48 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.       "directions": [
  69.         {
  70.           "directionName": "back",
  71.           "room": "door"
  72.         }
  73.       ]
  74.     },
  75.     {
  76.       "name": "^&(*^)(",
  77.       "description": "You are in ^&(*^)(.  You can see restroom.",
  78.       "items": ["USB-C connector", "grading rubric"],
  79.       "directions": [
  80.         {
  81.           "directionName": ")*(&……",
  82.           "room": "door"
  83.         },
  84.         {
  85.           "directionName": "HELL",
  86.           "room": "restroom"
  87.         }
  88.       ]
  89.     },
  90.     {
  91.       "name": "restroom",
  92.       "description": "You are in the restroom.  你看到老8️⃣\uD83D\uDCC4\uD83C\uDF0A\uD83D\uDCCF\uD83D\uDCA9.",
  93.       "items": ["bagel", "coffee"],
  94.       "directions": [
  95.         {
  96.           "directionName": "给\uD83D\uDC74爪巴",
  97.           "room": "^&(*^)("
  98.         }
  99.       ]
  100.     }
  101.   ]
  102. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement