Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 8.72 KB | None | 0 0
  1. {
  2.   "startingRoom": "Mushroom Kingdom",
  3.   "endingRoom": "Final Destination",
  4.   "player": {
  5.       "items": [
  6.         {
  7.           "name": "falchion"
  8.         }
  9.       ],
  10.     "health": 100,
  11.     "attackValue": 5,
  12.     "attackName": "Dolphin Slash"
  13.   },
  14.   "rooms": [
  15.     {
  16.       "name": "Mushroom Kingdom",
  17.       "description": "You are in the Mushroom Kingdom, ruled by Princess Peach and protected by Mario.",
  18.       "directions": [
  19.         {
  20.           "directionName": "East",
  21.           "room": "Kongo Jungle",
  22.           "enabled": "false",
  23.           "validKeyNames": ["Coconut Gun"]
  24.         }
  25.       ],
  26.       "items": [
  27.         {
  28.           "name": "Coconut Gun"
  29.         }
  30.       ],
  31.       "monster": {
  32.         "name": "Donkey Kong",
  33.         "health": 10,
  34.         "attackValue": 3,
  35.         "attackName": "Coconut Gun"
  36.       }
  37.     },
  38.     {
  39.       "name": "Kongo Jungle",
  40.       "description": "This is the home of Donkey Kong and his DK Crew. Beware of King K. Rool!",
  41.       "directions": [
  42.         {
  43.           "directionName": "North",
  44.           "room": "Underground Maze",
  45.           "enabled": "true",
  46.           "validKeyNames": []
  47.         },
  48.         {
  49.           "directionName": "South",
  50.           "room": "Brinstar",
  51.           "enabled": "false",
  52.           "validKeyNames": ["Triforce"]
  53.         }
  54.       ],
  55.       "items": [],
  56.       "monster": {
  57.         "name": "no monster"
  58.       }
  59.     },
  60.     {
  61.       "name": "Underground Maze",
  62.       "description": "The Triforce is hidden somewhere in these caves!",
  63.       "directions": [
  64.         {
  65.           "directionName": "North",
  66.           "room": "Northern Underground Maze",
  67.           "enabled": "true",
  68.           "validKeyNames": []
  69.         },
  70.         {
  71.           "directionName": "West",
  72.           "room": "Western Underground Maze",
  73.           "enabled": "true",
  74.           "validKeyNames": []
  75.         },
  76.         {
  77.           "directionName": "East",
  78.           "room": "Eastern Underground Maze",
  79.           "enabled": "true",
  80.           "validKeyNames": []
  81.         }
  82.       ],
  83.       "items": []
  84.     },
  85.     {
  86.       "name": "Northern Underground Maze",
  87.       "description": "You find nothing but a dead end in the northern region of this maze.",
  88.       "directions": [
  89.         {
  90.           "directionName": "South",
  91.           "room": "Underground Maze",
  92.           "enabled": "true",
  93.           "validKeyNames": []
  94.         }
  95.       ],
  96.       "items": [],
  97.       "monster": {
  98.         "name": "Dark Link",
  99.         "health": 8,
  100.         "attackValue": 5,
  101.         "attackName": "Dark Master Sword"
  102.       }
  103.     },
  104.     {
  105.       "name": "Western Underground Maze",
  106.       "description": "You are surrounded by a bright light. The Triforce presents itself before you.",
  107.       "directions": [
  108.         {
  109.           "directionName": "East",
  110.           "room": "Underground Maze",
  111.           "enabled": "true",
  112.           "validKeyNames": []
  113.         }
  114.       ],
  115.       "items": [
  116.         {
  117.           "name": "Triforce"
  118.         }
  119.       ],
  120.       "monster": {
  121.         "name": "no monster"
  122.       }
  123.     },
  124.     {
  125.       "name": "Eastern Underground Maze",
  126.       "description": "A dead end. The Triforce is not here.",
  127.       "directions": [
  128.         {
  129.           "directionName": "West",
  130.           "room": "Underground Maze",
  131.           "enabled": "true",
  132.           "validKeyNames": []
  133.         }
  134.       ],
  135.       "items": [],
  136.       "monster": {
  137.         "name": "Dark Link",
  138.         "health": 8,
  139.         "attackValue": 5,
  140.         "attackName": "Dark Master Sword"
  141.       }
  142.     },
  143.     {
  144.       "name": "Brinstar",
  145.       "description": "You've reached the planet Zebes. Who knows what you will find here?",
  146.       "directions": [
  147.         {
  148.           "directionName": "Down",
  149.           "room": "Chozo Statue Room",
  150.           "enabled": "true",
  151.           "validKeyNames": []
  152.         },
  153.         {
  154.           "directionName": "West",
  155.           "room": "Green Greens",
  156.           "enabled": "false",
  157.           "validKeyNames": ["Super Missiles"]
  158.         }
  159.       ],
  160.       "items": [],
  161.       "monster": {
  162.         "name": "Ridley",
  163.         "health": 20,
  164.         "attackValue": 8,
  165.         "attackName": "Metal Claws"
  166.       }
  167.     },
  168.     {
  169.       "name": "Chozo Statue Room",
  170.       "description": "A mysterious statue looms before you. You notice in the corner of your eye that it holds a weapon upgrade.",
  171.       "directions": [
  172.         {
  173.           "directionName": "Up",
  174.           "room": "Brinstar",
  175.           "enabled": "true",
  176.           "validKeyNames": []
  177.         }
  178.       ],
  179.       "items": [
  180.         {
  181.           "name": "Super Missiles"
  182.         }
  183.       ]
  184.     },
  185.     {
  186.       "name": "Green Greens",
  187.       "description": "In the distance, you hear a song. You recall its name. It is Gourmet Race.",
  188.       "directions": [
  189.         {
  190.           "directionName": "South",
  191.           "room": "Corneria",
  192.           "enabled": "false",
  193.           "validKeyNames": ["Rocket Hammer"]
  194.         }
  195.       ],
  196.       "items": "Rocket Hammer",
  197.       "monster": {
  198.         "name": "King Dedede",
  199.         "health": "50",
  200.         "attackValue": "4",
  201.         "attackName": "Rocket Hammer"
  202.       }
  203.     },
  204.     {
  205.       "name": "Corneria",
  206.       "description": "You've somehow made your way onto a starship. It is populated by humanoid animals. Weird.",
  207.       "directions": [
  208.         {
  209.           "directionName": "South",
  210.           "room": "Pokemon Stadium",
  211.           "enabled": "true",
  212.           "validKeyNames": []
  213.         }
  214.       ],
  215.       "items": [
  216.         {
  217.           "name": "Reflector"
  218.         }
  219.       ],
  220.       "monster": {
  221.         "name": "Wolf",
  222.         "health": 20,
  223.         "attackValue": 5,
  224.         "attackName": "Blaster"
  225.       }
  226.     },
  227.     {
  228.       "name": "Pokemon Stadium",
  229.       "description": "You are transported to a large stadium. Fans cheer as you turn to see your opponent. The battle is on!",
  230.       "directions": [
  231.         {
  232.           "directionName": "East",
  233.           "room": "Icicle Mountain",
  234.           "enabled": "true",
  235.           "validKeyNames": []
  236.         }
  237.       ],
  238.       "items": [],
  239.       "monster": {
  240.         "name": "Red",
  241.         "health": 60,
  242.         "attackValue": 15,
  243.         "attackName": "Charizard, Use FlameThrower!"
  244.       }
  245.     },
  246.     {
  247.       "name": "Icicle Mountain",
  248.       "description": "You stand before a monolithic structure. It looms ominously. Looks like the only way forward is up.",
  249.       "directions": [
  250.         {
  251.           "directionName": "Up",
  252.           "room": "Icicle Mountain Floor 2",
  253.           "enabled": "true",
  254.           "validKeyNames": []
  255.         }
  256.       ],
  257.       "items": [],
  258.       "monster": {
  259.         "name": "no monster"
  260.       }
  261.     },
  262.     {
  263.       "name": "Icicle Mountain Floor 2",
  264.       "description": "The mountain seems to grow in size, despite your efforts. It just seems to keep going...",
  265.       "directions": [
  266.         {
  267.           "directionName": "Up",
  268.           "room": "Icicle Mountain Floor 3",
  269.           "enabled": "true",
  270.           "validKeyNames": []
  271.         }
  272.       ],
  273.       "items": [],
  274.       "monster": {
  275.         "name": "no monster"
  276.       }
  277.     },
  278.     {
  279.       "name": "Icicle Mountain Floor 3",
  280.       "description": "... and going...",
  281.       "directions": [
  282.         {
  283.           "directionName": "Up",
  284.           "room": "Icicle Mountain Floor 4",
  285.           "enabled": "true",
  286.           "validKeyNames": []
  287.         }
  288.       ],
  289.       "items": [],
  290.       "monster": {
  291.         "name": "no monster"
  292.       }
  293.     },
  294.     {
  295.       "name": "Icicle Mountain Floor 4",
  296.       "description": "... and going.",
  297.       "directions": [
  298.         {
  299.           "directionName": "Up",
  300.           "room": "Icicle Mountain Floor 5",
  301.           "enabled": "true",
  302.           "validKeyNames": []
  303.         }
  304.       ],
  305.       "items": [],
  306.       "monster": {
  307.         "name": "no monster"
  308.       }
  309.     },
  310.     {
  311.       "name": "Icicle Mountain Floor 5",
  312.       "description": "You've made it to the top, but a monstrous appears overhead.",
  313.       "directions": [
  314.         {
  315.           "directionName": "South",
  316.           "room": "Final Destination",
  317.           "enabled": "true",
  318.           "validKeyNames": []
  319.         }
  320.       ],
  321.       "items": [
  322.         {
  323.           "name": "Trophy"
  324.         }
  325.       ],
  326.       "monster": {
  327.         "name": "Nitpicker",
  328.         "health": 20,
  329.         "attackValue": 2,
  330.         "attackName": "Beak"
  331.       }
  332.     },
  333.     {
  334.       "name": "Final Destination",
  335.       "description": "You've made it to the end. Suddenly, you hear a maniacal laugh. It's Master Hand! Prepare yourself!",
  336.       "directions": [],
  337.       "items": [],
  338.       "monster": {
  339.         "name": "Master Hand",
  340.         "health": 400,
  341.         "attackValue": 25,
  342.         "attackName": "Rocket Punch"
  343.       }
  344.     }
  345.   ]
  346. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement