Advertisement
Guest User

u6

a guest
Feb 17th, 2019
77
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.             "transportation": "false"
  9.         }
  10.     ]
  11.    },
  12.    "rooms":[
  13.       {
  14.          "name":"Evelyn's Room",
  15.          "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.",
  16.          "directions":[
  17.             {
  18.                "directionName":"Forward",
  19.                "room":"Upstairs Hallway",
  20.                "enabled":"true",
  21.                "validKeyNames":[
  22.  
  23.                ]
  24.             }
  25.          ],
  26.          "items":[
  27.             {
  28.                "name":"hairbrush",
  29.                "teleportation": "false"
  30.             },
  31.             {
  32.                "name":"participation medal",
  33.                "teleportation": "false"
  34.             },
  35.             {
  36.                "name":"cat treat",
  37.                "teleportation": "false"
  38.             }
  39.          ]
  40.       },
  41.       {
  42.          "name":"Upstairs Hallway",
  43.          "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.",
  44.          "directions":[
  45.             {
  46.                "directionName":"Left",
  47.                "room":"Sister's Room",
  48.                "enabled":"false",
  49.                "validKeyNames":[
  50.                   "hot cheetos"
  51.                ]
  52.             },
  53.             {
  54.                "directionName":"Forward",
  55.                "room":"Stairs",
  56.                "enabled":"false",
  57.                "validKeyNames":[
  58.                   "cat treat"
  59.                ]
  60.             },
  61.             {
  62.                "directionName":"Right",
  63.                "room":"Parents' Room",
  64.                "enabled":"true",
  65.                "validKeyNames":[
  66.  
  67.                ]
  68.             },
  69.             {
  70.                "directionName":"Back",
  71.                "room":"Evelyn's Room",
  72.                "enabled":"true",
  73.                "validKeyNames":[
  74.  
  75.                ]
  76.             }
  77.          ],
  78.          "items": [
  79.             {
  80.                 "name": null,
  81.                 "teleportation": null
  82.             }
  83.          ]
  84.       },
  85.       {
  86.          "name":"Sister's Room",
  87.          "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",
  88.          "directions":[
  89.             {
  90.                "directionName":"Forward",
  91.                "room":"Upstairs Hallway",
  92.                "enabled":"true",
  93.                "validKeyNames":[
  94.  
  95.                ]
  96.             }
  97.          ],
  98.          "items":[
  99.             {
  100.                "name":"painting",
  101.                "transportation": "true"
  102.             },
  103.             {
  104.                "name":"laptop",
  105.                "transportation": "true"
  106.             }
  107.          ]
  108.       },
  109.       {
  110.          "name":"Stairs",
  111.          "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.",
  112.          "directions":[
  113.             {
  114.                "directionName":"Up",
  115.                "room":"Upstairs Hallway",
  116.                "enabled":"true",
  117.                "validKeyNames":[
  118.  
  119.                ]
  120.             },
  121.             {
  122.                "directionName":"Down",
  123.                "room":"Downstairs Hallway",
  124.                "enabled":"true",
  125.                "validKeyNames":[
  126.  
  127.                ]
  128.             }
  129.          ],
  130.          "items": [
  131.             {
  132.                 "name": null,
  133.                 "teleportation": null
  134.             }
  135.          ]
  136.       },
  137.       {
  138.          "name":"Parents' Room",
  139.          "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.",
  140.          "directions":[
  141.             {
  142.                "directionName":"Forward",
  143.                "room":"Upstairs Hallway",
  144.                "enabled":"true",
  145.                "validKeyNames":[
  146.  
  147.                ]
  148.             }
  149.          ],
  150.          "items": [
  151.             {
  152.                 "name": null,
  153.                 "teleportation": null
  154.             }
  155.          ]
  156.       },
  157.       {
  158.          "name":"Downstairs Hallway",
  159.          "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.",
  160.          "directions":[
  161.             {
  162.                "directionName":"Forwards",
  163.                "room":"Living Room",
  164.                "enabled":"true",
  165.                "validKeyNames":[
  166.  
  167.                ]
  168.             },
  169.             {
  170.                "directionName":"Back",
  171.                "room":"Stairs",
  172.                "enabled":"true",
  173.                "validKeyNames":[
  174.  
  175.                ]
  176.             }
  177.          ],
  178.          "items": [
  179.             {
  180.                 "name": null,
  181.                 "teleportation": null
  182.             }
  183.          ]
  184.       },
  185.       {
  186.          "name":"Living Room",
  187.          "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.",
  188.          "directions":[
  189.             {
  190.                "directionName":"Right",
  191.                "room":"Bathroom",
  192.                "enabled":"false",
  193.                "validKeyNames":[
  194.                   "key"
  195.                ]
  196.             },
  197.             {
  198.                "directionName":"Left",
  199.                "room":"Kitchen",
  200.                "enabled":"true",
  201.                "validKeyNames":[
  202.  
  203.                ]
  204.             },
  205.             {
  206.                "directionName":"Back",
  207.                "room":"Downstairs Hallway",
  208.                "enabled":"true",
  209.                "validKeyNames":[
  210.  
  211.                ]
  212.             }
  213.          ],
  214.          "items":[
  215.             {
  216.                "name":"tv remote",
  217.                "transportation": "false"
  218.             }
  219.          ]
  220.       },
  221.       {
  222.          "name":"Kitchen",
  223.          "description":"You are in the kitchen. You can go forward to the dining table or behind you back to the living room.",
  224.          "directions":[
  225.             {
  226.                "directionName":"Forward",
  227.                "room":"Dining Table",
  228.                "enabled":"true",
  229.                "validKeyNames":[
  230.  
  231.                ]
  232.             },
  233.             {
  234.                "directionName":"Back",
  235.                "room":"Living Room",
  236.                "enabled":"true",
  237.                "validKeyNames":[
  238.  
  239.                ]
  240.             }
  241.          ],
  242.          "items":[
  243.             {
  244.                "name":"hammer",
  245.                "transportation": "false"
  246.             }
  247.          ]
  248.       },
  249.       {
  250.          "name":"Dining Table",
  251.          "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.",
  252.          "directions":[
  253.             {
  254.                "directionName":"Right",
  255.                "room":"Pantry",
  256.                "enabled":"true",
  257.                "validKeyNames":[
  258.  
  259.                ]
  260.             },
  261.             {
  262.                "directionName":"Forwards",
  263.                "room":"Basement Door",
  264.                "enabled":"true",
  265.                "validKeyNames":[
  266.  
  267.                ]
  268.             },
  269.             {
  270.                "directionName":"Back",
  271.                "room":"Kitchen",
  272.                "enabled":"true",
  273.                "validKeyNames":[
  274.  
  275.                ]
  276.             }
  277.          ],
  278.          "items":[
  279.             {
  280.                "name":"knife",
  281.                "transportation": "true"
  282.             }
  283.          ]
  284.       },
  285.       {
  286.          "name":"Pantry",
  287.          "description":"You are in the pantry. You turn around and see the dining table in front of you.",
  288.          "directions":[
  289.             {
  290.                "directionName":"Forward",
  291.                "room":"Dining Table",
  292.                "enabled":"true",
  293.                "validKeyNames":[
  294.  
  295.                ]
  296.             }
  297.          ],
  298.          "items": [
  299.             {
  300.                 "name": null,
  301.                 "teleportation": null
  302.             }
  303.          ]
  304.       },
  305.       {
  306.          "name":"Basement Door",
  307.          "description":"You are heading down to the basement. You can continue.",
  308.          "directions":[
  309.             {
  310.                "directionName":"Forward",
  311.                "room":"Basement Entrance",
  312.                "enabled":"true",
  313.                "validKeyNames":[
  314.  
  315.                ]
  316.             }
  317.          ],
  318.          "items": [
  319.             {
  320.                 "name": null,
  321.                 "teleportation": null
  322.             }
  323.          ]
  324.       },
  325.       {
  326.          "name":"Basement Entrance",
  327.          "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.",
  328.          "directions":[
  329.             {
  330.                "directionName":"Back",
  331.                "room":"Dining Table",
  332.                "enabled":"true",
  333.                "validKeyNames":[
  334.  
  335.                ]
  336.             },
  337.             {
  338.                "directionName":"Right",
  339.                "room":"TV Room",
  340.                "enabled":"false",
  341.                "validKeyNames":[
  342.                   "tv remote"
  343.                ]
  344.             },
  345.             {
  346.                "directionName":"Forward",
  347.                "room":"Ping Pong Table",
  348.                "enabled":"true",
  349.                "validKeyNames":[
  350.  
  351.                ]
  352.             }
  353.          ],
  354.          "items": [
  355.             {
  356.                 "name": null,
  357.                 "teleportation": null
  358.             }
  359.          ]
  360.       },
  361.       {
  362.          "name":"TV Room",
  363.          "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.",
  364.          "directions":[
  365.             {
  366.                "directionName":"Forward",
  367.                "room":"Basement Entrance",
  368.                "enabled":"true",
  369.                "validKeyNames":[
  370.  
  371.                ]
  372.             }
  373.          ],
  374.          "items": [
  375.             {
  376.                 "name": null,
  377.                 "teleportation": null
  378.             }
  379.          ]
  380.       },
  381.       {
  382.          "name":"Ping Pong Table",
  383.          "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.",
  384.          "directions":[
  385.             {
  386.                "directionName":"Right",
  387.                "room":"Closet",
  388.                "enabled":"false",
  389.                "validKeyNames":[
  390.                   "hammer"
  391.                ]
  392.             },
  393.             {
  394.                "directionName":"Back",
  395.                "room":"Basement Entrance",
  396.                "enabled":"true",
  397.                "validKeyNames":[
  398.  
  399.                ]
  400.             }
  401.          ],
  402.          "items":[
  403.             {
  404.                "name":"paddle",
  405.                "transportation": "false"
  406.             }
  407.          ]
  408.       },
  409.       {
  410.          "name":"Closet",
  411.          "description":"After hammering down the door, you find yourself in the closet. You look forward to see the ping pong table.",
  412.          "directions":[
  413.             {
  414.                "directionName":"Forward",
  415.                "room":"Ping Pong Table",
  416.                "enabled":"true",
  417.                "validKeyNames":[
  418.  
  419.                ]
  420.             }
  421.          ],
  422.          "items": [
  423.             {
  424.                 "name": "key",
  425.                 "transportation": "false"
  426.             }
  427.          ]
  428.       },
  429.       {
  430.          "name":"Bathroom",
  431.          "description":"Opening up the door to the bathroom, 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.",
  432.          "directions":[
  433.             {
  434.                "directionName":"Back",
  435.                "room":"Living Room",
  436.                "enabled":"true",
  437.                "validKeyNames":[
  438.  
  439.                ]
  440.             }
  441.          ],
  442.          "items": [
  443.             {
  444.                 "name": null,
  445.                 "teleportation": null
  446.             }
  447.          ]
  448.       }
  449.    ]
  450. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement