Advertisement
jargon

Story05Js :: "Book Puzzlum's Palace Z.json"

Jul 31st, 2024 (edited)
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.95 KB | None | 0 0
  1. {
  2.     "entities": {
  3.         "Poindexter": {
  4.             "purse": [
  5.                 "Dagger"
  6.             ],
  7.             "mood": "Mild",
  8.             "location": "Puzzlum's Palace"
  9.         },
  10.         "Orc": {
  11.             "purse": [
  12.                 "Mace",
  13.                 "Gold Piece (7)",
  14.                 "Food Ration (1)"
  15.             ],
  16.             "mood": "Mad",
  17.             "location": "Dungeon Corridor"
  18.         },
  19.         "Emerald Guard": {
  20.             "purse": [
  21.                 "Pike"
  22.             ],
  23.             "mood": "Mild",
  24.             "location": "West Hall"
  25.         },
  26.         "Gamblum": {
  27.             "purse": [
  28.                 "Dungeon Key"
  29.             ],
  30.             "mood": "Mild",
  31.             "location": "Balcony"
  32.         },
  33.         "Princess Celeste": {
  34.             "purse": [
  35.                 "Celeste's Mirror"
  36.             ],
  37.             "mood": "Mild",
  38.             "location": "Princess Celeste's Bedroom"
  39.         },
  40.         "Puzzlum": {
  41.             "purse": [
  42.             ],
  43.             "mood": "Mild",
  44.             "location": "Puzzlum's Palace"
  45.         },
  46.         "Dismembered Skeleton": {
  47.             "purse": [
  48.                 "Battle Axe"
  49.             ],
  50.             "mood": "Dead",
  51.             "location": "Dungeon Corridor"
  52.         }
  53.     },
  54.     "passages": {
  55.         "Courtyard Pond": {
  56.             "options": {
  57.                 "Surface": "Courtyard",
  58.                 "Wade": "Courtyard Pond",
  59.                 "Dive": "Courtyard Pond"
  60.             },
  61.             "purse": [
  62.                 "Pearl"
  63.             ]
  64.         },
  65.         "Courtyard": {
  66.             "options": {
  67.                 "Rest": "Shady Tree",
  68.                 "Swim": "Courtyard Pond"
  69.             }
  70.         },
  71.         "Shady Tree": {
  72.             "options": {
  73.                 "Get Up": "Courtyard",
  74.             }
  75.         },
  76.         "Dungeon Stairwell": {
  77.             "options": {
  78.                 "Down": "Dungeon Corridor",
  79.                 "Up": "Upper Dungeon Door"
  80.             }
  81.         },
  82.         "Upper Dungeon Door": {
  83.             "options": {
  84.                 "In": "Dungeon Stairwell",
  85.                 "Out": "East Hall"
  86.             }
  87.         },
  88.         "Lower Dungeon Door": {
  89.             "options": {
  90.                 "In": "Dungeon Corridor",
  91.                 "Out": "Courtyard"
  92.             }      
  93.         },
  94.         "Cell Door": {     
  95.             "options": {
  96.                 "In": "Dungeon Cell",
  97.                 "Out": "Dungeon Corridor"
  98.             }
  99.         },
  100.         "Elegant Staircase": {
  101.             "options": {
  102.                 "Up": "Upper Hall",
  103.                 "Down": "West Hall"
  104.             }
  105.         },
  106.         "Upper Hall": {
  107.             "options": {
  108.                 "In 1": "Upper Arch 1",
  109.                 "In 2": "Upper Arch 2",
  110.                 "Back": "Elegant Staircase"
  111.             }
  112.         },
  113.         "Upper Arch 1": {
  114.             "options": {
  115.                 "Out": "Upper Hall",
  116.                 "In": "Balcony"
  117.             }
  118.         },
  119.         "Upper Arch 2": {
  120.             "options": {
  121.                 "Out": "Upper Hall",
  122.                 "In": "Princess Celeste's Bedroom"
  123.             }
  124.         },
  125.         "Princess Celeste's Bedroom": {
  126.             "options": {
  127.                 "Out": "Upper Arch 2"
  128.             }
  129.         },
  130.         "Balcony": {
  131.             "options": {
  132.                 "Out": "Upper Arch 1",
  133.                 "Jump": "Courtyard Pond"
  134.             }
  135.         },
  136.         "West Hall": {
  137.             "options": {
  138.                 "West": "Elegant Staircase",
  139.                 "East": "End Of Hall"
  140.             }
  141.         },
  142.         "East Hall": {
  143.             "options": {
  144.                 "West": "End Of Hall",
  145.                 "East": "Upper Dungeon Door"
  146.             }
  147.         },
  148.         "End Of Hall": {
  149.             "options": {
  150.                 "West": "West Hall",
  151.                 "East": "East Hall",
  152.                 "South": "Grand Hall",
  153.                 "North": "Unfinished Hallway"
  154.             }
  155.         },
  156.         "Unfinished Hallway": {
  157.             "options": {
  158.                 "South": "End Of Hall"
  159.             }
  160.         },
  161.         "Puzzlum's Palace": {
  162.             "options": {
  163.                 "North": "Grand Hall"
  164.             }
  165.         },
  166.         "Grand Hall": {
  167.             "options": {
  168.                 "South": "Puzzlum's Palace",
  169.                 "North": "End Of Hall"
  170.             }
  171.         }
  172.     }
  173. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement