Advertisement
Guest User

teleportation

a guest
Feb 16th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.    "startingRoom":"Evelyn's Room",
  3.    "endingRoom":"Bathroom",
  4.    "player": {
  5.     "items": [
  6.         {
  7.             "name": "hot cheetos"
  8.         }
  9.     ]
  10.    },
  11.    "rooms":[
  12.       {
  13.          "name":"Evelyn's Room",
  14.          "description":"You are looking out the window in your room, seeing the beautiful view of a park. You turn around and see the hallway in front of you.",
  15.          "directions":[
  16.             {
  17.                "directionName":"Forward",
  18.                "room":"Upstairs Hallway",
  19.                "enabled":"true",
  20.                "validKeyNames":[
  21.  
  22.                ]
  23.             }
  24.          ],
  25.          "items":[
  26.             {
  27.                "name":"hairbrush"
  28.                "teleportation": "false"
  29.             },
  30.             {
  31.                "name":"participation medal"
  32.                "teleportation": "false"
  33.             },
  34.             {
  35.                "name":"cat treat"
  36.                "teleportation": "false"
  37.             }
  38.          ]
  39.       },
  40.       {
  41.          "name":"Upstairs Hallway",
  42.          "description":"You are in the upstairs hallway of your house. You hear your sister praying for hot cheetos in her room to the left, and you turn to see your cat laying on the stairs to the first floor in front of you, and your parents' room on your right.",
  43.          "directions":[
  44.             {
  45.                "directionName":"Left",
  46.                "room":"Sister's Room",
  47.                "enabled":"false",
  48.                "validKeyNames":[
  49.                   "hot cheetos"
  50.                ]
  51.             },
  52.             {
  53.                "directionName":"Forward",
  54.                "room":"Stairs",
  55.                "enabled":"false",
  56.                "validKeyNames":[
  57.                   "cat treat"
  58.                ]
  59.             },
  60.             {
  61.                "directionName":"Right",
  62.                "room":"Parents' Room",
  63.                "enabled":"true",
  64.                "validKeyNames":[
  65.  
  66.                ]
  67.             },
  68.             {
  69.                "directionName":"Back",
  70.                "room":"Evelyn's Room",
  71.                "enabled":"true",
  72.                "validKeyNames":[
  73.  
  74.                ]
  75.             }
  76.          ]
  77.       },
  78.       {
  79.          "name":"Sister's Room",
  80.          "description":"You are in your sister's room. As promised, you give the sister some hot cheetos and then look around to see a painting, her laptop, and some coloring pencils. In front of you, you see the entrance back into the hallway",
  81.          "directions":[
  82.             {
  83.                "directionName":"Forward",
  84.                "room":"Upstairs Hallway",
  85.                "enabled":"true",
  86.                "validKeyNames":[
  87.  
  88.                ]
  89.             }
  90.          ],
  91.          "items":[
  92.             {
  93.                "name":"painting"
  94.                "transportation": "true"
  95.             },
  96.             {
  97.                "name":"laptop"
  98.                "transportation": "true"
  99.             }
  100.          ]
  101.       },
  102.       {
  103.          "name":"Stairs",
  104.          "description":"You are on the stairs and see your cat sprawled on one of the steps. To be allowed to pass, you give her a cat treat and continue on. You can go up to the upstairs hallway or down to the downstairs hallway.",
  105.          "directions":[
  106.             {
  107.                "directionName":"Up",
  108.                "room":"Upstairs Hallway",
  109.                "enabled":"true",
  110.                "validKeyNames":[
  111.  
  112.                ]
  113.             },
  114.             {
  115.                "directionName":"Down",
  116.                "room":"Downstairs Hallway",
  117.                "enabled":"true",
  118.                "validKeyNames":[
  119.  
  120.                ]
  121.             }
  122.          ]
  123.       },
  124.       {
  125.          "name":"Parents' Room",
  126.          "description":"You are in your parents' room. Everything is organized and tidy and there is nothing out of place to pick up. In front of you, you see the entrance back into the upstairs hallway.",
  127.          "directions":[
  128.             {
  129.                "directionName":"Forward",
  130.                "room":"Upstairs Hallway",
  131.                "enabled":"true",
  132.                "validKeyNames":[
  133.  
  134.                ]
  135.             }
  136.          ]
  137.       },
  138.       {
  139.          "name":"Downstairs Hallway",
  140.          "description":"You are in the downstairs hallway. You can see the living room in front of you and the stairs to go upstairs behind you.",
  141.          "directions":[
  142.             {
  143.                "directionName":"Forwards",
  144.                "room":"Living Room",
  145.                "enabled":"true",
  146.                "validKeyNames":[
  147.  
  148.                ]
  149.             },
  150.             {
  151.                "directionName":"Back",
  152.                "room":"Stairs",
  153.                "enabled":"true",
  154.                "validKeyNames":[
  155.  
  156.                ]
  157.             }
  158.          ]
  159.       },
  160.       {
  161.          "name":"Living Room",
  162.          "description":"You are in the living room. To your right is the bathroom and to your left is the kitchen. Behind you is the downstairs hallway.",
  163.          "directions":[
  164.             {
  165.                "directionName":"Right",
  166.                "room":"Bathroom",
  167.                "enabled":"false",
  168.                "validKeyNames":[
  169.                   "key"
  170.                ]
  171.             },
  172.             {
  173.                "directionName":"Left",
  174.                "room":"Kitchen",
  175.                "enabled":"true",
  176.                "validKeyNames":[
  177.  
  178.                ]
  179.             },
  180.             {
  181.                "directionName":"Back",
  182.                "room":"Downstairs Hallway",
  183.                "enabled":"true",
  184.                "validKeyNames":[
  185.  
  186.                ]
  187.             }
  188.          ],
  189.          "items":[
  190.             {
  191.                "name":"tv remote"
  192.                "transportation": "false"
  193.             }
  194.          ]
  195.       },
  196.       {
  197.          "name":"Kitchen",
  198.          "description":"You are in the kitchen. You can go forward to the dining table or behind you back to the living room.",
  199.          "directions":[
  200.             {
  201.                "directionName":"Forward",
  202.                "room":"Dining Table",
  203.                "enabled":"true",
  204.                "validKeyNames":[
  205.  
  206.                ]
  207.             },
  208.             {
  209.                "directionName":"Back",
  210.                "room":"Living Room",
  211.                "enabled":"true",
  212.                "validKeyNames":[
  213.  
  214.                ]
  215.             }
  216.          ],
  217.          "items":[
  218.             {
  219.                "name":"hammer"
  220.                "transportation": "false"
  221.             }
  222.          ]
  223.       },
  224.       {
  225.          "name":"Dining Table",
  226.          "description":"You are by the dining table. You can see the pantry to your right, the door leading to the basement in front of you, and the kitchen behind you.",
  227.          "directions":[
  228.             {
  229.                "directionName":"Right",
  230.                "room":"Pantry",
  231.                "enabled":"true",
  232.                "validKeyNames":[
  233.  
  234.                ]
  235.             },
  236.             {
  237.                "directionName":"Forwards",
  238.                "room":"Basement Door",
  239.                "enabled":"true",
  240.                "validKeyNames":[
  241.  
  242.                ]
  243.             },
  244.             {
  245.                "directionName":"Back",
  246.                "room":"Kitchen",
  247.                "enabled":"true",
  248.                "validKeyNames":[
  249.  
  250.                ]
  251.             }
  252.          ],
  253.          "items":[
  254.             {
  255.                "name":"knife"
  256.                "transportation": "true"
  257.             }
  258.          ]
  259.       },
  260.       {
  261.          "name":"Pantry",
  262.          "description":"You are in the pantry. You turn around and see the dining table in front of you.",
  263.          "directions":[
  264.             {
  265.                "directionName":"Forward",
  266.                "room":"Dining Table",
  267.                "enabled":"true",
  268.                "validKeyNames":[
  269.  
  270.                ]
  271.             }
  272.          ]
  273.       },
  274.       {
  275.          "name":"Basement Door",
  276.          "description":"You are heading down to the basement. You can continue.",
  277.          "directions":[
  278.             {
  279.                "directionName":"Forward",
  280.                "room":"Basement Entrance",
  281.                "enabled":"true",
  282.                "validKeyNames":[
  283.  
  284.                ]
  285.             }
  286.          ]
  287.       },
  288.       {
  289.          "name":"Basement Entrance",
  290.          "description":"You are in the entrance of the basement. You can go back to the dining table through the basement door or go right to the TV room or forward to the ping pong table.",
  291.          "directions":[
  292.             {
  293.                "directionName":"Back",
  294.                "room":"Dining Table",
  295.                "enabled":"true",
  296.                "validKeyNames":[
  297.  
  298.                ]
  299.             },
  300.             {
  301.                "directionName":"Right",
  302.                "room":"TV Room",
  303.                "enabled":"false",
  304.                "validKeyNames":[
  305.                   "tv remote"
  306.                ]
  307.             },
  308.             {
  309.                "directionName":"Forward",
  310.                "room":"Ping Pong Table",
  311.                "enabled":"true",
  312.                "validKeyNames":[
  313.  
  314.                ]
  315.             }
  316.          ]
  317.       },
  318.       {
  319.          "name":"TV Room",
  320.          "description":"You are in the TV Room. You use the TV Remote to turn on the TV, but then realize the TV is broken. You turn around and look ahead to the basement entrance.",
  321.          "directions":[
  322.             {
  323.                "directionName":"Forward",
  324.                "room":"Basement Entrance",
  325.                "enabled":"true",
  326.                "validKeyNames":[
  327.  
  328.                ]
  329.             }
  330.          ]
  331.       },
  332.       {
  333.          "name":"Ping Pong Table",
  334.          "description":"You are by the Ping Pong Table. You hit the ball against the paddle a few times and watch as your cat, who has followed you, jumps after the ball. Getting bored, you look to your right and see the closet and look back and see the basement entrance.",
  335.          "directions":[
  336.             {
  337.                "directionName":"Right",
  338.                "room":"Closet",
  339.                "enabled":"false",
  340.                "validKeyNames":[
  341.                   "hammer"
  342.                ]
  343.             },
  344.             {
  345.                "directionName":"Back",
  346.                "room":"Basement Entrance",
  347.                "enabled":"true",
  348.                "validKeyNames":[
  349.  
  350.                ]
  351.             }
  352.          ],
  353.          "items":[
  354.             {
  355.                "name":"paddle"
  356.                "transportation": "false"
  357.             }
  358.          ]
  359.       },
  360.       {
  361.          "name":"Closet",
  362.          "description":"After hammering down the door, you find youself in the closet. You see a key laying down next to the door and look forward to see the ping pong table.",
  363.          "directions":[
  364.             {
  365.                "directionName":"Forward",
  366.                "room":"Ping Pong Table",
  367.                "enabled":"true",
  368.                "validKeyNames":[
  369.  
  370.                ]
  371.             }
  372.          ],
  373.          "items": [
  374.             {
  375.                 "name": "key"
  376.                 "transportation": "false"
  377.             }
  378.          ]
  379.       },
  380.       {
  381.          "name":"Bathroom",
  382.          "description":"Opening up the door to the basement, you enter and turn to face the mirror. And suddenly, after this entire adventure, you finally realize why this is the ending room. Smiling at the mirror, you realize that YOU are the real prize.",
  383.          "directions":[
  384.             {
  385.                "directionName":"Back",
  386.                "room":"Living Room",
  387.                "enabled":"true",
  388.                "validKeyNames":[
  389.  
  390.                ]
  391.             }
  392.          ]
  393.       }
  394.    ]
  395. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement