From 5a5e2e4b5e6b5eb3ab0a4168798e4673135b2a69 Mon Sep 17 00:00:00 2001 From: ElGrenier <48546541+ElGrenier@users.noreply.github.com> Date: Tue, 13 May 2025 13:19:51 +0200 Subject: [PATCH 1/2] Cleaned up code Removed all mention of character or scenario (only Jill and route "a" exist) --- .../autorun/randomizer/Archipelago.lua | 12 +- reframework/autorun/randomizer/Lookups.lua | 32 +- .../autorun/randomizer/Typewriters.lua | 5 +- .../ArchipelagoRE3R/{jill => }/items.json | 912 +- .../{jill/a => }/locations.json | 8910 ++++++++--------- .../{jill/a => }/locations_hardcore.json | 52 +- .../{jill/a => }/locations_inferno.json | 1258 +-- .../{jill/a => }/locations_nightmare.json | 538 +- .../{jill/a => }/region_connections.json | 1256 +-- .../ArchipelagoRE3R/{jill/a => }/regions.json | 876 +- .../{jill/a => }/typewriters.json | 288 +- .../ArchipelagoRE3R/{jill => }/zones.json | 50 +- 12 files changed, 7094 insertions(+), 7095 deletions(-) rename reframework/data/ArchipelagoRE3R/{jill => }/items.json (94%) rename reframework/data/ArchipelagoRE3R/{jill/a => }/locations.json (97%) rename reframework/data/ArchipelagoRE3R/{jill/a => }/locations_hardcore.json (96%) rename reframework/data/ArchipelagoRE3R/{jill/a => }/locations_inferno.json (96%) rename reframework/data/ArchipelagoRE3R/{jill/a => }/locations_nightmare.json (97%) rename reframework/data/ArchipelagoRE3R/{jill/a => }/region_connections.json (95%) rename reframework/data/ArchipelagoRE3R/{jill/a => }/regions.json (93%) rename reframework/data/ArchipelagoRE3R/{jill/a => }/typewriters.json (96%) rename reframework/data/ArchipelagoRE3R/{jill => }/zones.json (92%) diff --git a/reframework/autorun/randomizer/Archipelago.lua b/reframework/autorun/randomizer/Archipelago.lua index 34645c4..83e2b15 100644 --- a/reframework/autorun/randomizer/Archipelago.lua +++ b/reframework/autorun/randomizer/Archipelago.lua @@ -101,12 +101,12 @@ function Archipelago.SlotDataHandler(slot_data) Archipelago.death_link = slot_data.death_link end - Lookups.Load(slot_data.character, slot_data.scenario, string.lower(slot_data.difficulty)) + Lookups.Load(string.lower(slot_data.difficulty)) Storage.Load() GUI.AddTexts({ { message='AP Scenario: ' }, - { message=Lookups.character:gsub("^%l", string.upper) .. ' ' .. string.upper(Lookups.scenario) .. ' ' .. string.upper(Lookups.difficulty), color="green" } + { message=string.upper(Lookups.difficulty), color="green" } }) for t, typewriter_name in pairs(slot_data.unlocked_typewriters) do @@ -645,10 +645,10 @@ function Archipelago._GetLocationFromLocationData(location_data, include_sent_lo local translated_location = {} local scenario_suffixes = { - standard = " (" .. string.upper(string.sub(Lookups.character, 1, 1) .. Lookups.scenario) .. ")", - hardcore = " (" .. string.upper(string.sub(Lookups.character, 1, 1) .. Lookups.scenario) .. "H)", - nightmare = " (" .. string.upper(string.sub(Lookups.character, 1, 1) .. Lookups.scenario) .. "N)", - inferno = " (" .. string.upper(string.sub(Lookups.character, 1, 1) .. Lookups.scenario) .. "I)" + standard = "", + hardcore = " (" .. "H)", + nightmare = " (" .. "N)", + inferno = " (" .. "I)" } if location_data['id'] and not location_data['name'] then diff --git a/reframework/autorun/randomizer/Lookups.lua b/reframework/autorun/randomizer/Lookups.lua index 0a7caec..5fd7b9a 100644 --- a/reframework/autorun/randomizer/Lookups.lua +++ b/reframework/autorun/randomizer/Lookups.lua @@ -5,31 +5,31 @@ Lookups.items = {} Lookups.all_items = {} Lookups.locations = {} Lookups.typewriters = {} -Lookups.character = nil -Lookups.scenario = nil +-- Lookups.character = nil +-- Lookups.scenario = nil Lookups.difficulty = nil -function Lookups.Load(character, scenario, difficulty) +function Lookups.Load(difficulty) -- If this was already loaded and not cleared, don't load again if #Lookups.items > 0 and #Lookups.locations > 0 then return end - Lookups.character = character - Lookups.scenario = scenario + -- Lookups.character = character + -- Lookups.scenario = scenario Lookups.difficulty = difficulty - character = string.lower(character) - scenario = string.lower(scenario) + -- character = string.lower(character) + -- scenario = string.lower(scenario) - local jill_file = Lookups.filepath .. "/jill/items.json" - local location_file = Lookups.filepath .. character .. "/" .. scenario .. "/locations.json" - local location_hardcore_file = Lookups.filepath .. character .. "/" .. scenario .. "/locations_hardcore.json" - local location_nightmare_file = Lookups.filepath .. character .. "/" .. scenario .. "/locations_nightmare.json" - local location_inferno_file = Lookups.filepath .. character .. "/" .. scenario .. "/locations_inferno.json" - local typewriter_file = Lookups.filepath .. character .. "/" .. scenario .. "/typewriters.json" + local item_file = Lookups.filepath .. "/items.json" + local location_file = Lookups.filepath .. "/locations.json" + local location_hardcore_file = Lookups.filepath .. "/locations_hardcore.json" + local location_nightmare_file = Lookups.filepath .. "/locations_nightmare.json" + local location_inferno_file = Lookups.filepath .. "/locations_inferno.json" + local typewriter_file = Lookups.filepath .. "/typewriters.json" - Lookups.items = json.load_file(jill_file) or {} + Lookups.items = json.load_file(item_file) or {} Lookups.locations = json.load_file(location_file) or {} Lookups.typewriters = json.load_file(typewriter_file) or {} @@ -70,8 +70,8 @@ function Lookups.Reset() Lookups.items = {} Lookups.locations = {} Lookups.typewriters = {} - Lookups.character = nil - Lookups.scenario = nil + -- Lookups.character = nil + -- Lookups.scenario = nil Lookups.difficulty = nil end diff --git a/reframework/autorun/randomizer/Typewriters.lua b/reframework/autorun/randomizer/Typewriters.lua index d8cdc50..79e0053 100644 --- a/reframework/autorun/randomizer/Typewriters.lua +++ b/reframework/autorun/randomizer/Typewriters.lua @@ -19,7 +19,7 @@ function Typewriters.AddUnlockedText(name, item_name, no_save_warning) end if #typewriterText > 0 then - if typewriterText == "RPD - Lobby" and string.lower(Lookups.scenario) == "a" and not Storage.talkedToMarvin then + if typewriterText == "RPD - Lobby" and not Storage.talkedToMarvin then -- Marvin exist in RE3R ?? GUI.AddText("Lobby Typewriter will unlock after you talk to Marvin for the first time.") else GUI.AddTexts({ @@ -91,7 +91,7 @@ function Typewriters.DisplayWarpMenu() for t, typewriter in pairs(Lookups.typewriters) do local typewriter_disabled = false - if typewriter["name"] == "RPD - Lobby" and string.lower(Lookups.scenario) == "a" and not Storage.talkedToMarvin then + if typewriter["name"] == "RPD - Lobby" and not Storage.talkedToMarvin then -- Marvin exist in RE3R ?? typewriter_disabled = true end @@ -134,7 +134,6 @@ function Typewriters.DisplayWarpMenu() Typewriters.UnlockAll() end - -- Warping while Ada and triggering any cutscenes breaks the game imgui.pop_font() imgui.end_window() diff --git a/reframework/data/ArchipelagoRE3R/jill/items.json b/reframework/data/ArchipelagoRE3R/items.json similarity index 94% rename from reframework/data/ArchipelagoRE3R/jill/items.json rename to reframework/data/ArchipelagoRE3R/items.json index 94173bd..0e04afa 100644 --- a/reframework/data/ArchipelagoRE3R/jill/items.json +++ b/reframework/data/ArchipelagoRE3R/items.json @@ -1,457 +1,457 @@ -[ - { - "type": "Key", - "name": "Fire Hose", - "decimal": "181", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Bolt Cutters", - "decimal": "152", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Lock Pick", - "decimal": "151", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Battery Pack", - "decimal": "186", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Kendo Gate Key", - "decimal": "182", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "ID Card", - "decimal": "164", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Safety Deposit Key", - "decimal": "162", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Battery", - "decimal": "161", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Hospital ID Card", - "decimal": "211", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Cassette Tape", - "decimal": "213", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Tape Player", - "decimal": "214", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Vaccine Sample", - "decimal": "215", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Electronic Gadget", - "decimal": "165", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Detonator", - "decimal": "217", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Locker Room Key", - "decimal": "218", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Fuse 1", - "decimal": "224", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Fuse 2", - "decimal": "223", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Fuse 3", - "decimal": "222", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Override Key", - "decimal": "232", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Culture Sample", - "decimal": "234", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Liquid-Filled Test Tube", - "decimal": "235", - "count": 1, - "progression": 1 - }, - { - "type": "Key", - "name": "Vaccine", - "decimal": "233", - "count": 1, - "progression": 1 - }, - - { - "type": "Gating", - "name": "Green Jewel", - "decimal": "187", - "count": 1, - "progression": 1 - }, - { - "type": "Gating", - "name": "Blue Jewel", - "decimal": "188", - "count": 1, - "progression": 1 - }, - { - "type": "Gating", - "name": "Red Jewel", - "decimal": "189", - "count": 1, - "progression": 1 - }, - - { - "type": "Recovery", - "name": "First Aid Spray", - "decimal": "1", - "count": 1, - "progression": 0 - }, - { - "type": "Recovery", - "name": "Green Herb", - "decimal": "2", - "count": 1, - "progression": 0 - }, - { - "type": "Recovery", - "name": "Red Herb", - "decimal": "3", - "count": 1, - "progression": 0 - }, - - { - "type": "Crafting", - "name": "Gunpowder", - "decimal": "61", - "count": 1, - "progression": 0 - }, - { - "type": "Crafting", - "name": "High-Grade Gunpowder", - "decimal": "62", - "count": 1, - "progression": 0 - }, - { - "type": "Crafting", - "name": "Explosive A", - "decimal": "63", - "count": 1, - "progression": 0 - }, - { - "type": "Crafting", - "name": "Explosive B", - "decimal": "64", - "count": 1, - "progression": 0 - }, - - { - "type": "Consumable", - "name": "Hip Pouch", - "decimal": "261", - "count": 1, - "progression": 0 - }, - - { - "type": "Weapon", - "name": "G19", - "decimal": "1", - "count": 10, - "progression": 0, - "ammo": "Handgun Ammo" - }, - { - "type": "Weapon", - "name": "G18", - "decimal": "2", - "count": 33, - "progression": 0, - "ammo": "Handgun Ammo" - }, - { - "type": "Weapon", - "name": "M3 Shotgun", - "decimal": "11", - "count": 4, - "progression": 0, - "ammo": "Shotgun Shells" - }, - { - "type": "Weapon", - "name": "Assault Rifle", - "decimal": "21", - "count": 32, - "progression": 0, - "ammo": "Assault Rifle Ammo" - }, - { - "type": "Weapon", - "name": "MAG", - "decimal": "31", - "count": 8, - "progression": 0, - "ammo": "MAG Ammo" - }, - { - "type": "Weapon", - "name": "MGL Grenade Launcher", - "decimal": "42", - "count": 6, - "progression": 0, - "ammo": "Explosive Rounds" - }, - - { - "type": "Subweapon", - "name": "Hand Grenade", - "decimal": "65", - "count": 1, - "progression": 0 - }, - { - "type": "Subweapon", - "name": "Flash Grenade", - "decimal": "66", - "count": 1, - "progression": 0 - }, - - { - "type": "Upgrade", - "name": "Dot Sight - G19", - "decimal": "77", - "count": 1, - "progression": 0 - }, - { - "type": "Upgrade", - "name": "Extended Mag - G19", - "decimal": "78", - "count": 1, - "progression": 0 - }, - { - "type": "Upgrade", - "name": "Moderator - G19", - "decimal": "76", - "count": 1, - "progression": 0 - }, - { - "type": "Upgrade", - "name": "Tactical Stock - M3", - "decimal": "92", - "count": 1, - "progression": 0 - }, - { - "type": "Upgrade", - "name": "Semi-Auto Barrel - M3", - "decimal": "91", - "count": 1, - "progression": 0 - }, - { - "type": "Upgrade", - "name": "Shell Holder - M3", - "decimal": "93", - "count": 1, - "progression": 0 - }, - { - "type": "Upgrade", - "name": "Scope - Assault Rifle", - "decimal": "96", - "count": 1, - "progression": 0 - }, - { - "type": "Upgrade", - "name": "Dual Magazine - Assault Rifle", - "decimal": "97", - "count": 1, - "progression": 0 - }, - { - "type": "Upgrade", - "name": "Tactical Grip - Assault Rifle", - "decimal": "98", - "count": 1, - "progression": 0 - }, - { - "type": "Upgrade", - "name": "Extended Barrel - MAG", - "decimal": "101", - "count": 1, - "progression": 0 - }, - - { - "type": "Ammo", - "name": "Handgun Ammo", - "decimal": "31", - "count": 10, - "progression": 0 - }, - { - "type": "Ammo", - "name": "Shotgun Shells", - "decimal": "32", - "count": 5, - "progression": 0 - }, - { - "type": "Ammo", - "name": "Assault Rifle Ammo", - "decimal": "33", - "count": 40, - "progression": 0 - }, - { - "type": "Ammo", - "name": "MAG Ammo", - "decimal": "34", - "count": 5, - "progression": 0 - }, - { - "type": "Ammo", - "name": "Mine Rounds", - "decimal": "36", - "count": 3, - "progression": 0 - }, - { - "type": "Ammo", - "name": "Explosive Rounds", - "decimal": "37", - "count": 3, - "progression": 0 - }, - { - "type": "Ammo", - "name": "Flame Rounds", - "decimal": "38", - "count": 3, - "progression": 0 - }, - { - "type": "Ammo", - "name": "Acid Rounds", - "decimal": "39", - "count": 3, - "progression": 0 - }, - { - "type": "Ammo", - "name": "Supply Case - Shotgun Shells", - "decimal": "313", - "count": 1, - "progression": 0 - }, - { - "type": "Ammo", - "name": "Supply Case - Flame Rounds", - "decimal": "314", - "count": 1, - "progression": 0 - }, - - { - "type": "Trap", - "name": "Damage Trap", - "decimal": "", - "count": 1, - "progression": 0 - }, - - { - "name": "Victory", - "id": null, - "progression": 1 - } +[ + { + "type": "Key", + "name": "Fire Hose", + "decimal": "181", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Bolt Cutters", + "decimal": "152", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Lock Pick", + "decimal": "151", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Battery Pack", + "decimal": "186", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Kendo Gate Key", + "decimal": "182", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "ID Card", + "decimal": "164", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Safety Deposit Key", + "decimal": "162", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Battery", + "decimal": "161", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Hospital ID Card", + "decimal": "211", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Cassette Tape", + "decimal": "213", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Tape Player", + "decimal": "214", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Vaccine Sample", + "decimal": "215", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Electronic Gadget", + "decimal": "165", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Detonator", + "decimal": "217", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Locker Room Key", + "decimal": "218", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Fuse 1", + "decimal": "224", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Fuse 2", + "decimal": "223", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Fuse 3", + "decimal": "222", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Override Key", + "decimal": "232", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Culture Sample", + "decimal": "234", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Liquid-Filled Test Tube", + "decimal": "235", + "count": 1, + "progression": 1 + }, + { + "type": "Key", + "name": "Vaccine", + "decimal": "233", + "count": 1, + "progression": 1 + }, + + { + "type": "Gating", + "name": "Green Jewel", + "decimal": "187", + "count": 1, + "progression": 1 + }, + { + "type": "Gating", + "name": "Blue Jewel", + "decimal": "188", + "count": 1, + "progression": 1 + }, + { + "type": "Gating", + "name": "Red Jewel", + "decimal": "189", + "count": 1, + "progression": 1 + }, + + { + "type": "Recovery", + "name": "First Aid Spray", + "decimal": "1", + "count": 1, + "progression": 0 + }, + { + "type": "Recovery", + "name": "Green Herb", + "decimal": "2", + "count": 1, + "progression": 0 + }, + { + "type": "Recovery", + "name": "Red Herb", + "decimal": "3", + "count": 1, + "progression": 0 + }, + + { + "type": "Crafting", + "name": "Gunpowder", + "decimal": "61", + "count": 1, + "progression": 0 + }, + { + "type": "Crafting", + "name": "High-Grade Gunpowder", + "decimal": "62", + "count": 1, + "progression": 0 + }, + { + "type": "Crafting", + "name": "Explosive A", + "decimal": "63", + "count": 1, + "progression": 0 + }, + { + "type": "Crafting", + "name": "Explosive B", + "decimal": "64", + "count": 1, + "progression": 0 + }, + + { + "type": "Consumable", + "name": "Hip Pouch", + "decimal": "261", + "count": 1, + "progression": 0 + }, + + { + "type": "Weapon", + "name": "G19", + "decimal": "1", + "count": 10, + "progression": 0, + "ammo": "Handgun Ammo" + }, + { + "type": "Weapon", + "name": "G18", + "decimal": "2", + "count": 33, + "progression": 0, + "ammo": "Handgun Ammo" + }, + { + "type": "Weapon", + "name": "M3 Shotgun", + "decimal": "11", + "count": 4, + "progression": 0, + "ammo": "Shotgun Shells" + }, + { + "type": "Weapon", + "name": "Assault Rifle", + "decimal": "21", + "count": 32, + "progression": 0, + "ammo": "Assault Rifle Ammo" + }, + { + "type": "Weapon", + "name": "MAG", + "decimal": "31", + "count": 8, + "progression": 0, + "ammo": "MAG Ammo" + }, + { + "type": "Weapon", + "name": "MGL Grenade Launcher", + "decimal": "42", + "count": 6, + "progression": 0, + "ammo": "Explosive Rounds" + }, + + { + "type": "Subweapon", + "name": "Hand Grenade", + "decimal": "65", + "count": 1, + "progression": 0 + }, + { + "type": "Subweapon", + "name": "Flash Grenade", + "decimal": "66", + "count": 1, + "progression": 0 + }, + + { + "type": "Upgrade", + "name": "Dot Sight - G19", + "decimal": "77", + "count": 1, + "progression": 0 + }, + { + "type": "Upgrade", + "name": "Extended Mag - G19", + "decimal": "78", + "count": 1, + "progression": 0 + }, + { + "type": "Upgrade", + "name": "Moderator - G19", + "decimal": "76", + "count": 1, + "progression": 0 + }, + { + "type": "Upgrade", + "name": "Tactical Stock - M3", + "decimal": "92", + "count": 1, + "progression": 0 + }, + { + "type": "Upgrade", + "name": "Semi-Auto Barrel - M3", + "decimal": "91", + "count": 1, + "progression": 0 + }, + { + "type": "Upgrade", + "name": "Shell Holder - M3", + "decimal": "93", + "count": 1, + "progression": 0 + }, + { + "type": "Upgrade", + "name": "Scope - Assault Rifle", + "decimal": "96", + "count": 1, + "progression": 0 + }, + { + "type": "Upgrade", + "name": "Dual Magazine - Assault Rifle", + "decimal": "97", + "count": 1, + "progression": 0 + }, + { + "type": "Upgrade", + "name": "Tactical Grip - Assault Rifle", + "decimal": "98", + "count": 1, + "progression": 0 + }, + { + "type": "Upgrade", + "name": "Extended Barrel - MAG", + "decimal": "101", + "count": 1, + "progression": 0 + }, + + { + "type": "Ammo", + "name": "Handgun Ammo", + "decimal": "31", + "count": 10, + "progression": 0 + }, + { + "type": "Ammo", + "name": "Shotgun Shells", + "decimal": "32", + "count": 5, + "progression": 0 + }, + { + "type": "Ammo", + "name": "Assault Rifle Ammo", + "decimal": "33", + "count": 40, + "progression": 0 + }, + { + "type": "Ammo", + "name": "MAG Ammo", + "decimal": "34", + "count": 5, + "progression": 0 + }, + { + "type": "Ammo", + "name": "Mine Rounds", + "decimal": "36", + "count": 3, + "progression": 0 + }, + { + "type": "Ammo", + "name": "Explosive Rounds", + "decimal": "37", + "count": 3, + "progression": 0 + }, + { + "type": "Ammo", + "name": "Flame Rounds", + "decimal": "38", + "count": 3, + "progression": 0 + }, + { + "type": "Ammo", + "name": "Acid Rounds", + "decimal": "39", + "count": 3, + "progression": 0 + }, + { + "type": "Ammo", + "name": "Supply Case - Shotgun Shells", + "decimal": "313", + "count": 1, + "progression": 0 + }, + { + "type": "Ammo", + "name": "Supply Case - Flame Rounds", + "decimal": "314", + "count": 1, + "progression": 0 + }, + + { + "type": "Trap", + "name": "Damage Trap", + "decimal": "", + "count": 1, + "progression": 0 + }, + + { + "name": "Victory", + "id": null, + "progression": 1 + } ] \ No newline at end of file diff --git a/reframework/data/ArchipelagoRE3R/jill/a/locations.json b/reframework/data/ArchipelagoRE3R/locations.json similarity index 97% rename from reframework/data/ArchipelagoRE3R/jill/a/locations.json rename to reframework/data/ArchipelagoRE3R/locations.json index 7d386b5..560dcd5 100644 --- a/reframework/data/ArchipelagoRE3R/jill/a/locations.json +++ b/reframework/data/ArchipelagoRE3R/locations.json @@ -1,4456 +1,4456 @@ -[ - { - "name": "By Ticket Gate 1", - "region": "Subway Station", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001_gherb_01", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Ticket Gate 2", - "region": "Subway Station", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001_gherb_02", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Ticket Gate 3", - "region": "Subway Station", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205_GunPowder", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Ticket Gate 4", - "region": "Subway Station", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205_GunPowder", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box", - "region": "Subway Station", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0201_0/gimmick", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Attache Case", - "region": "Subway Station", - "original_item": "Shotgun Shells", - "condition": { - "items": [ - "Lock Pick" - ] - }, - "item_object": "sm70_101", - "parent_object": "sm70_101", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Clock Puzzle - 1st Jewel", - "region": "Subway Station", - "original_item": "Hand Grenade", - "condition": { - "items": [ - "Red Jewel" - ] - }, - "item_object": "WP6200", - "parent_object": "ItemPositions_Jewel_1", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/JewelryBox", - "randomized": 0 - }, - { - "name": "Clock Puzzle - 2nd Jewel", - "region": "Subway Station", - "original_item": "Tactical Stock - M3", - "condition": { - "items": [ - "Red Jewel", - "Blue Jewel" - ] - }, - "item_object": "sm71_101", - "parent_object": "ItemPositions_Jewel_2", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/JewelryBox", - "randomized": 0 - }, - { - "name": "Clock Puzzle - 3rd Jewel", - "region": "Subway Station", - "original_item": "Hip Pouch", - "condition": { - "items": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel" - ] - }, - "item_object": "sm74_200", - "parent_object": "ItemPositions_Jewel_3", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/JewelryBox", - "randomized": 0 - }, - { - "name": "On Barrel in Alley", - "region": "South Avenue", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_hgshell", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area" - }, - { - "name": "Breakable Box", - "region": "Main Avenue", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0208_0/gimmick" - }, - { - "name": "Box By Donut Shop", - "region": "Shopping Plaza", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area" - }, - { - "name": "By Coffee Machines", - "region": "Donut Shop", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_hgshell", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/_DounutShop_Inside" - }, - { - "name": "Table By Zombie Couple", - "region": "Donut Shop", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/_DounutShop_Inside" - }, - { - "name": "Inside Kitchen 1", - "region": "Donut Shop", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_051", - "parent_object": "sm70_051", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/_DounutShop_Inside", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Inside Kitchen 2", - "region": "Donut Shop", - "original_item": "Red Jewel", - "condition": {}, - "item_object": "sm73_313", - "parent_object": "sm73_313", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "South Side Breakable Box", - "region": "Business Street", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0219_0/gimmick" - }, - { - "name": "North Side Breakable Box", - "region": "Business Street", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0216_0/gimmick" - }, - { - "name": "Table Next to Donut Shop", - "region": "Business Street", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Street" - }, - { - "name": "Floor in Hallway", - "region": "Subway Office", - "original_item": "Fire Hose", - "condition": {}, - "item_object": "sm74_203", - "parent_object": "sm74_203", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem" - }, - { - "name": "Middle Locker", - "region": "Subway Office", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "WP6200", - "parent_object": "600_wp6200_grenade_00_In_LockedLocker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" - }, - { - "name": "Right Locker", - "region": "Subway Office", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205_gunp_In_Locker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" - }, - { - "name": "Table By Downed Zombie", - "region": "Pharmacy", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Pharamacy" - }, - { - "name": "Shelves", - "region": "Pharmacy", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206_chemi", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Pharamacy" - }, - { - "name": "Box By Register", - "region": "Pharmacy", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001_greenherb", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Pharamacy" - }, - { - "name": "Safe", - "region": "Drugstore Storage", - "original_item": "Dot Sight - G19", - "condition": {}, - "item_object": "0232_sm42_019_SafeBoxDial01A_00_control", - "parent_object": "", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/SafeBox" - }, - { - "name": "In Drawer By Safe", - "region": "Drugstore Storage", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205_gunp_chestpos", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_500_Owner_House" - }, - { - "name": "Storage Entry", - "region": "Drugstore Storage", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_hgsehll", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_500_Owner_House" - }, - { - "name": "Breakable Box", - "region": "Building Rooftop", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0213_0/gimmick" - }, - { - "name": "Downed Zombie", - "region": "Building Rooftop", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_400_Signboard_Area" - }, - { - "name": "Tool Cabinet", - "region": "Tool Shop", - "original_item": "Bolt Cutters", - "condition": {}, - "item_object": "sm73_001", - "parent_object": "sm73_001", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem", - "randomized": 0 - }, - { - "name": "On Table", - "region": "Garage", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "sm70_101_sgshell", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_700_Garage", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Downed UCBS Merc", - "region": "Back Alley", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_700_Garage" - }, - { - "name": "Breakable Box", - "region": "Back Alley", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0226_0/gimmick" - }, - { - "name": "Right Locker", - "region": "Substation", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205_gunp_Locker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Building_Inside", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table", - "region": "Substation", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "sm70_002_rherb", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Building_Inside", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Control Room", - "region": "Substation", - "original_item": "Hip Pouch", - "condition": {}, - "item_object": "sm74_200", - "parent_object": "sm74_200_SideBag", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Building_Inside", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Storage Racks 1", - "region": "Outdoor Area", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Deimos_Area/HerbPlanter", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Storage Racks 2", - "region": "Outdoor Area", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Deimos_Area/HerbPlanter", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Corpse", - "region": "Outdoor Area", - "original_item": "Lock Pick", - "condition": {}, - "item_object": "EventPlay_EV322_k", - "parent_object": "", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/Scenario/S03_1000/ES_S03_1000", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box", - "region": "Outdoor Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0402_0/gimmick", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Portable Generator", - "region": "Power Maze", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Deimos_Area", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Power Breaker", - "region": "Power Maze", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Deimos_Area", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box", - "region": "Power Maze", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0402_0/gimmick", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Left Locker", - "region": "Substation", - "original_item": "Handgun Ammo", - "condition": { - "items": [ - "Lock Pick" - ] - }, - "item_object": "sm70_100", - "parent_object": "sm70_100_KeyPickLocker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Building_Inside", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "1st Nemesis Case", - "region": "Nemesis Chase", - "original_item": "Extended Mag - G19", - "condition": {}, - "item_object": "sm77_000", - "parent_object": "sm77_000", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/NemesisDropItems" - }, - { - "name": "Locker", - "region": "Tool Shop", - "original_item": "First Aid Spray", - "condition": { - "items": [ - "Lock Pick" - ] - }, - "item_object": "sm70_000", - "parent_object": "sm70_000spray_keylockpos", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_700_Garage", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Locker", - "region": "Donut Shop", - "original_item": "Hand Grenade", - "condition": { - "items": [ - "Lock Pick" - ] - }, - "item_object": "WP6200", - "parent_object": "wp6200_grenade_In_LockedLocker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/_DounutShop_Inside", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Barrel", - "region": "Side Alley", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Street" - }, - { - "name": "On Corpse", - "region": "Side Alley", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "WP6200", - "parent_object": "600_wp6200_grenade_02", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Street" - }, - { - "name": "Attache Case", - "region": "Side Alley", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "sm70_101_InCase", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Street" - }, - { - "name": "In Case Of Emergency", - "region": "Subway Office", - "original_item": "M3 Shotgun", - "condition": { - "items": [ - "Bolt Cutters" - ] - }, - "item_object": "WP1000", - "parent_object": "WP1000", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon" - }, - { - "name": "Left Locker", - "region": "Subway Office", - "original_item": "First Aid Spray", - "condition": { - "items": [ - "Lock Pick" - ] - }, - "item_object": "sm70_000", - "parent_object": "600_wp6200_grenade_01_In_LockedLocker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" - }, - { - "name": "Attache Case", - "region": "Subway Office", - "original_item": "Shotgun Shells", - "condition": { - "items": [ - "Lock Pick" - ] - }, - "item_object": "sm70_101", - "parent_object": "sm70_101_InCase", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_PTCRoom" - }, - { - "name": "2nd Nemesis Case", - "region": "Nemesis Chase", - "original_item": "Moderator - G19", - "condition": {}, - "item_object": "sm77_001", - "parent_object": "sm77_001", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/NemesisDropItems" - }, - { - "name": "Counter", - "region": "Toy Shop", - "original_item": "Green Jewel", - "condition": {}, - "item_object": "sm73_311", - "parent_object": "sm73_311", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem" - }, - { - "name": "Counter By Door", - "region": "Supermarket", - "original_item": "Blue Jewel", - "condition": {}, - "item_object": "sm73_312", - "parent_object": "sm73_312", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem" - }, - { - "name": "North East Shelves", - "region": "Supermarket", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area/I_205_SuperMarket" - }, - { - "name": "Center Shelves", - "region": "Supermarket", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area/I_205_SuperMarket" - }, - { - "name": "3rd Nemesis Case", - "region": "Nemesis Chase", - "original_item": "Supply Case - Shotgun Shells", - "condition": {}, - "item_object": "sm77_002", - "parent_object": "sm77_002", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/NemesisDropItems" - }, - { - "name": "Subway Access Passage", - "region": "Nemesis Chase", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/EmployeePassage" - }, - { - "name": "Subway Storeroom", - "region": "Nemesis Chase", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/EmployeePassage" - }, - { - "name": "Table", - "region": "Manager's Office", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "sm70_002", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Safe_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Left Locker", - "region": "Manager's Office", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_107", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Safe_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Right Locker", - "region": "Manager's Office", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Safe_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Near Ladder", - "region": "East Tunnel", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "WP6200", - "parent_object": "wp6200", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Cart", - "region": "South Office", - "original_item": "MGL Grenade Launcher", - "condition": {}, - "item_object": "WP4100", - "parent_object": "WP4100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Barrel", - "region": "South Office", - "original_item": "Explosive B", - "condition": {}, - "item_object": "sm70_208", - "parent_object": "sm70_208", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Grenade_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Before Laboratory", - "region": "West Tunnel", - "original_item": "Flame Rounds", - "condition": {}, - "item_object": "sm70_108", - "parent_object": "sm70_108", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Floor By Lockers", - "region": "Sewer Laboratory", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_BatteryKey_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Left Locker", - "region": "Sewer Laboratory", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205_InLocker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_BatteryKey_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Locked Locker", - "region": "Sewer Laboratory", - "original_item": "Explosive A", - "condition": {}, - "item_object": "sm70_207", - "parent_object": "sm70_207_In_LockedLocker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_BatteryKey_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Refrigerator", - "region": "Sewer Laboratory", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_BatteryKey_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Cart", - "region": "Sewer Laboratory", - "original_item": "Battery Pack", - "condition": {}, - "item_object": "sm73_305", - "parent_object": "sm73_305", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box", - "region": "Northwest Tunnel", - "original_item": "Explosive B", - "condition": {}, - "item_object": "sm70_208", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0611_0/gimmick", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Corpse", - "region": "Northwest Tunnel", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "sm70_101_sgshell", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table 1", - "region": "Security Room", - "original_item": "Explosive A", - "condition": {}, - "item_object": "sm70_207", - "parent_object": "sm70_207", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Security_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table 2", - "region": "Security Room", - "original_item": "Hip Pouch", - "condition": {}, - "item_object": "sm74_200", - "parent_object": "sm74_200_SideBag", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Security_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table 3", - "region": "Security Room", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Security_Room", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table", - "region": "Demolition Site Storage", - "original_item": "Explosive A", - "condition": {}, - "item_object": "sm70_207", - "parent_object": "sm70_207", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_SafeRoom", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Floor Near Ladder", - "region": "Demolition Site Storage", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_SafeRoom", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Case on North Scaffolding", - "region": "Demolition Site Roof", - "original_item": "Explosive Rounds", - "condition": {}, - "item_object": "sm70_106", - "parent_object": "sm70_106_InCase", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Case on South Scaffolding", - "region": "Demolition Site Roof", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_051", - "parent_object": "sm70_001_InCase", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Lumber", - "region": "Demolition Site Roof", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001_gherb", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On South Scaffolding", - "region": "Demolition Site Roof", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "sm70_002_rherb", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Box By Portable Generator 1", - "region": "Demolition Site Roof", - "original_item": "Explosive Rounds", - "condition": {}, - "item_object": "sm70_106", - "parent_object": "sm70_106_greexplo", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Box By Portable Generator 2", - "region": "Demolition Site Roof", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_hgshell", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Generator", - "region": "Demolition Site Roof", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "sm70_101_sgshell", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Car Next to Fire Truck", - "region": "Industry Street", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_RPD_Street" - }, - { - "name": "Case Near RPD Garage", - "region": "Outside Gun Shop", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206_InCase", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_RPD_Street", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "In Display Case", - "region": "Gun Shop", - "original_item": "Explosive B", - "condition": {}, - "item_object": "sm70_208", - "parent_object": "sm70_208", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Weapon Crate", - "region": "Gun Shop", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001_greenherb", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Shelf 1", - "region": "Gun Shop", - "original_item": "Semi-Auto Barrel - M3", - "condition": {}, - "item_object": "sm71_100", - "parent_object": "sm71_100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Shelf 2", - "region": "Gun Shop", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Shelf 3", - "region": "Gun Shop", - "original_item": "Explosive A", - "condition": {}, - "item_object": "sm70_207", - "parent_object": "sm70_207", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Display Case", - "region": "Gun Shop", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Key Cabinet", - "region": "Gun Shop", - "original_item": "Kendo Gate Key", - "condition": {}, - "item_object": "sm73_301", - "parent_object": "sm73_301", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Zombie", - "region": "Small Alley", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "sm70_002_redherb", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_2Fhouse", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "2F Attache Case", - "region": "House", - "original_item": "Explosive Rounds", - "condition": { - "items": [ - "Lock Pick" - ] - }, - "item_object": "sm70_106", - "parent_object": "sm70_106_greexplo", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_2Fhouse", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box", - "region": "Scaffolding", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0228_0/gimmick" - }, - { - "name": "4th Nemesis Case", - "region": "Shopping Plaza", - "original_item": "Supply Case - Flame Rounds", - "condition": { - "items": [ - "Kendo Gate Key", - "Lock Pick", - "Bolt Cutters", - "Fire Hose", - "Battery Pack" - ] - }, - "item_object": "sm77_004", - "parent_object": "sm77_004", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/NemesisDropItems" - }, - { - "name": "Breakable Box", - "region": "East Courtyard", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0301_0/gimmick_Escape", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Near Breakable Box", - "region": "East Courtyard", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "sm70_002_0301", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Brad's Corpse", - "region": "RPD Entrance", - "original_item": "ID Card", - "condition": {}, - "item_object": "sm73_203", - "parent_object": "sm73_203", - "folder_path": "RopewayManagers/TemporaryObjects/Enemy", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Crates Near Medallion Statue", - "region": "Main Lobby", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Waiting Room Barricade", - "region": "Main Lobby", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "ID Case", - "region": "RPD Reception", - "original_item": "Assault Rifle Ammo", - "condition": { - "items": [ - "ID Card" - ] - }, - "item_object": "sm70_102", - "parent_object": "ItemPositions_sm41_410", - "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0202_0/gimmick_Escape", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table", - "region": "Operations Room", - "original_item": "Flash Grenade", - "condition": {}, - "item_object": "WP6300", - "parent_object": "WP6300", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table", - "region": "Operations Room 2", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "sm70_102", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box", - "region": "West Hallway 1F", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0217_0/gimmick_Escape", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "ID Case", - "region": "West Office", - "original_item": "Scope - Assault Rifle", - "condition": { - "items": [ - "ID Card" - ] - }, - "item_object": "sm71_200", - "parent_object": "ItemPositions_sm41_410", - "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0208_0/gimmick_Escape", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Locker", - "region": "West Office", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "ItemPositions_NormalLocker_1FW_OfficeW", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Desk Near Safe", - "region": "West Office", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Safe", - "region": "West Office", - "original_item": "Hip Pouch", - "condition": {}, - "item_object": "sm42_019_SafeBoxDial01A_OfficeW_control", - "parent_object": "", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/1FW/WestOffice/IronSafe_1FWOffice", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Cabinet Near Reception Window", - "region": "West Office", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "sm70_002_WestOffice", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Reception Window", - "region": "West Office", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Right Locker", - "region": "Darkroom", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "ItemPositions_NormalLocker_1FW3DarkRoom", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Left Locker", - "region": "Darkroom", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "ItemPositions_NormalLocker_1FW1DarkRoom", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box", - "region": "West Hallway 3F", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0603_0/gimmick_Escape", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "DCM Locker", - "region": "West Hallway 3F", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "ItemPositions_NormalLocker_3FWCorridor", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Box", - "region": "West Hallway 3F", - "original_item": "Safety Deposit Key", - "condition": {}, - "item_object": "sm73_201", - "parent_object": "sm73_201", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "randomized": 0 - }, - { - "name": "Locker 104", - "region": "Safety Deposit Room", - "original_item": "Battery", - "condition": {}, - "item_object": "sm73_200", - "parent_object": "sm73_200_Bomb_Locker104", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/1FW/hokanko/HokankoLocker/HokankoItems", - "randomized": 0 - }, - { - "name": "Locker 106", - "region": "Safety Deposit Room", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "sm70_102_Asshell_Locker106", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/1FW/hokanko/HokankoLocker/HokankoItems", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Locker 109", - "region": "Safety Deposit Room", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "RPD_Mess_ItemGet_109", - "parent_object": "", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Scenario/S02_0400/ES_S02_0400/Msg", - "randomized": 0 - }, - { - "name": "On Cabinet", - "region": "Safety Deposit Room", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001_Hokanko", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Towel Rack", - "region": "Shower Room", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "CAP Locker", - "region": "Shower Room", - "original_item": "Flash Grenade", - "condition": {}, - "item_object": "WP6300", - "parent_object": "ItemPositions_NormalLocker_2FW2Corridor", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Shower Wall", - "region": "Shower Room", - "original_item": "Electronic Gadget", - "condition": {}, - "item_object": "sm73_204", - "parent_object": "ItemPositionsForBarricade", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Scenario/S02_0300/ES_S02_0300/ShowerRoomBlownUp", - "randomized": 0 - }, - { - "name": "On Bench", - "region": "Shower Room", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "sm70_102", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" - }, - { - "name": "Right Locker", - "region": "Shower Room", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "ItemPositions_NormalLocker_2FW10LockerRoom", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker" - }, - { - "name": "Left Locker", - "region": "Shower Room", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "ItemPositions_NormalLocker_2FW9LockerRoom", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker" - }, - { - "name": "By Linen Room", - "region": "West Hallway 2F", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "sm70_102", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" - }, - { - "name": "ID Case", - "region": "STARS Office", - "original_item": "Assault Rifle Ammo", - "condition": { - "items": [ - "ID Card" - ] - }, - "item_object": "sm70_102", - "parent_object": "ItemPositions_sm41_410", - "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0404_0/gimmick_Escape" - }, - { - "name": "Desk By Armory", - "region": "STARS Office", - "original_item": "Flash Grenade", - "condition": {}, - "item_object": "WP6300", - "parent_object": "WP6300_StarsOffice", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" - }, - { - "name": "First Aid Kit", - "region": "STARS Office", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000_StarsOffice", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" - }, - { - "name": "Box By Entrance", - "region": "STARS Office", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "sm70_002_StarsOffice", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" - }, - { - "name": "Bench 1", - "region": "Dilapidated Shelter", - "original_item": "Mine Rounds", - "condition": {}, - "item_object": "sm70_105", - "parent_object": "sm70_105mine", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item/SafeRoom", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Bench 2", - "region": "Dilapidated Shelter", - "original_item": "Mine Rounds", - "condition": {}, - "item_object": "sm70_105", - "parent_object": "sm70_105mine", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item/SafeRoom", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Bench 3", - "region": "Dilapidated Shelter", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000_spray", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item/SafeRoom", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Chair", - "region": "Dilapidated Shelter", - "original_item": "M3 Shotgun", - "condition": {}, - "item_object": "WP1000", - "parent_object": "WP1000", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Barrel", - "region": "Dilapidated Shelter", - "original_item": "MGL Grenade Launcher", - "condition": {}, - "item_object": "WP4100", - "parent_object": "WP4100", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Bench By Waterside", - "region": "Promenade", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100hgsell", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Bench Near Statues", - "region": "Promenade", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001gherb", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box", - "region": "Promenade", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0804_0/gimmick", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample" - ] - }, - { - "name": "Breakable Box By School Bus", - "region": "Plaza", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" - }, - { - "name": "Breakable Box By City Bus", - "region": "Plaza", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" - }, - { - "name": "By School Bus 1", - "region": "Plaza", - "original_item": "Flame Rounds", - "condition": {}, - "item_object": "sm70_108", - "parent_object": "sm70_108", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" - }, - { - "name": "By School Bus 2", - "region": "Plaza", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100hgshell_Car04A_01", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" - }, - { - "name": "Behind Statue", - "region": "Plaza", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001gherb", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" - }, - { - "name": "Inside Van", - "region": "Plaza", - "original_item": "Mine Rounds", - "condition": {}, - "item_object": "sm70_105", - "parent_object": "sm70_105mine_Van04B_01", - "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" - }, - { - "name": "Inside Patrol Car", - "region": "Plaza", - "original_item": "Mine Rounds", - "condition": {}, - "item_object": "sm70_105", - "parent_object": "sm70_105mine_Car01A_Ch3_2_00", - "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" - }, - { - "name": "By City Bus 1", - "region": "Plaza", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "sm70_101sgshell", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" - }, - { - "name": "By City Bus 2", - "region": "Plaza", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100hgshell", - "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" - }, - { - "name": "Inside SWAT Truck", - "region": "Plaza", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "sm70_101sgshell_Car01B_00", - "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" - }, - { - "name": "By Doors", - "region": "Makeshift Sickroom", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0101_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0101" - }, - { - "name": "Admissions Desk 1", - "region": "Hospital Lobby", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0102_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0102" - }, - { - "name": "Admissions Desk 2", - "region": "Hospital Lobby", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "st04_0102_sm70_000_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0102" - }, - { - "name": "Reception Desk", - "region": "Hospital Reception", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "st04_0103_sm70_002_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0103" - }, - { - "name": "Reception Desk", - "region": "Laboratory Reception", - "original_item": "Tape Player", - "condition": {}, - "item_object": "sm73_403", - "parent_object": "sm73_403(CassetPlayer)", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/KeyItem" - }, - { - "name": "By Couch", - "region": "Laboratory Reception", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "st04_0105_sm70_001_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0105" - }, - { - "name": "Breakable Box Near Operating Room", - "region": "Emergency Entrance", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital/Environments/st04_0107_0/gimmick" - }, - { - "name": "Table", - "region": "Emergency Entrance", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0107_sm70_102_01", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0107" - }, - { - "name": "Gurney", - "region": "Main Corridor 2F", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "st04_0202_sm70_100_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0202" - }, - { - "name": "Shelves", - "region": "Main Corridor 2F", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0202_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0202" - }, - { - "name": "Shelf", - "region": "Records Room", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0203_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0203" - }, - { - "name": "By Typewriter", - "region": "Records Room", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "st04_0203_sm70_001_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0203" - }, - { - "name": "Stepstool", - "region": "Records Room", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "st04_0203_sm70_100_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0203" - }, - { - "name": "Table", - "region": "Staff Room", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0204_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0204" - }, - { - "name": "Safe", - "region": "Nurse Station", - "original_item": "Dual Magazine - Assault Rifle", - "condition": {}, - "item_object": "0101_sm42_019_SafeBoxDial01A_control", - "parent_object": "", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/LocationFsm_Hospital/common/ES_common/SafeBox" - }, - { - "name": "Overbed Table 1", - "region": "Sickroom", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "st04_0210_sm70_001_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0210" - }, - { - "name": "Overbed Table 2", - "region": "Sickroom", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0210_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0210" - }, - { - "name": "Supply Cart", - "region": "Sickroom", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "WP6200", - "parent_object": "st04_0210_wp6200_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0210" - }, - { - "name": "Southside", - "region": "Courtyard", - "original_item": "Tactical Grip - Assault Rifle", - "condition": {}, - "item_object": "sm71_202", - "parent_object": "st04_0113_sm71_202", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0113" - }, - { - "name": "Northwest Corner 1", - "region": "Courtyard", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "st04_0113_sm70_001_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0113" - }, - { - "name": "Northwest Corner 2", - "region": "Courtyard", - "original_item": "Locker Room Key", - "condition": {}, - "item_object": "sm73_407", - "parent_object": "sm73_407(Key)", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/KeyItem" - }, - { - "name": "Near Courtyard Exit", - "region": "Main Corridor", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0104_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0104" - }, - { - "name": "West Locker", - "region": "Locker Room", - "original_item": "Hospital ID Card", - "condition": {}, - "item_object": "sm73_400", - "parent_object": "Locker_cardkey", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", - "randomized": 0 - }, - { - "name": "North Locker", - "region": "Locker Room", - "original_item": "Flash Grenade", - "condition": {}, - "item_object": "WP6300", - "parent_object": "Locker_Senko", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem" - }, - { - "name": "By Locker", - "region": "Linen Room", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0206_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0206" - }, - { - "name": "Stepstool", - "region": "Linen Room", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "st04_0206_sm70_002_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0206" - }, - { - "name": "Overbed Table 1", - "region": "Treatment Room", - "original_item": "Cassette Tape", - "condition": {}, - "item_object": "sm73_402", - "parent_object": "sm73_402(Tape)", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/KeyItem", - "randomized": 0 - }, - { - "name": "Overbed Table 2", - "region": "Treatment Room", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0209_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0209" - }, - { - "name": "Cart 1", - "region": "Operating Room", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "st04_0108_sm70_001_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" - }, - { - "name": "Cart 2", - "region": "Operating Room", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "st04_0108_sm70_100_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" - }, - { - "name": "Cart 3", - "region": "Operating Room", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0108_sm70_102_01", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0108" - }, - { - "name": "Cart 4", - "region": "Operating Room", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0108_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0108" - }, - { - "name": "Cart 5", - "region": "Operating Room", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "WP6200", - "parent_object": "st04_0108_wp6100_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" - }, - { - "name": "Cart 6", - "region": "Operating Room", - "original_item": "Flash Grenade", - "condition": {}, - "item_object": "WP6300", - "parent_object": "st04_0108_Wp6300_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" - }, - { - "name": "Cart 7", - "region": "Operating Room", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "WP6200", - "parent_object": "st04_0108_wp6100_01", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" - }, - { - "name": "Cart 8", - "region": "Operating Room", - "original_item": "Flash Grenade", - "condition": {}, - "item_object": "WP6300", - "parent_object": "st04_0108_Wp6300_01", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" - }, - { - "name": "Breakable Box Near Locker", - "region": "Emergency Entrance", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital/Environments/st04_0107_0/gimmick" - }, - { - "name": "Desk 1", - "region": "Research Laboratory", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0109_sm70_102_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0109" - }, - { - "name": "Desk 2", - "region": "Research Laboratory", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "st04_0109_sm70_100_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0109" - }, - { - "name": "Desk 3", - "region": "Research Laboratory", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "st04_0109_sm70_001_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0109" - }, - { - "name": "Desk 4", - "region": "Research Laboratory", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "st04_0109_sm70_102_01", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0109" - }, - { - "name": "Cold Storage", - "region": "Sample Room", - "original_item": "Vaccine Sample", - "condition": {}, - "item_object": "sm73_404", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital/Environments/gmk_door", - "randomized": 0 - }, - { - "name": "Tyrell-FAS", - "region": "Makeshift Sickroom", - "original_item": "First Aid Spray", - "condition": { - "items": [ - "Vaccine Sample" - ] - }, - "item_object": "sm70_000", - "parent_object": "st04_0101_sm70_000_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0101" - }, - { - "name": "Weapon Crate", - "region": "Hospital Lobby", - "original_item": "Detonator", - "condition": { - "items": [ - "Vaccine Sample" - ] - }, - "item_object": "sm73_406", - "parent_object": "sm73_406", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/RoujousenRepopItem", - "randomized": 0 - }, - { - "name": "By Doors 1", - "region": "Makeshift Sickroom", - "original_item": "G18", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "WP0100", - "parent_object": "G18_Handgun", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Wepon", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Doors 2", - "region": "Makeshift Sickroom", - "original_item": "Flash Grenade", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_100", - "parent_object": "st04_0101_sm70_100_01", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Item/st04_0101", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box Near Sickroom", - "region": "Hospital Lobby", - "original_item": "Handgun Ammo", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital/Environments/st04_0102_0/gimmick_Hospital2", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box Near Reception", - "region": "Hospital Lobby", - "original_item": "Handgun Ammo", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital/Environments/st04_0102_0/gimmick_Hospital2", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Attache Case", - "region": "Main Corridor", - "original_item": "MAG Ammo", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_103", - "parent_object": "KeyAttache_MagnumBullet", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Locker", - "region": "Emergency Entrance", - "original_item": "Explosive Rounds", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_106", - "parent_object": "KeyLocker_GrenadeLauncherBullet", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Bard", - "region": "Research Laboratory", - "original_item": "Explosive B", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_208", - "parent_object": "st04_0109_sm70_208_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Item/st04_0109", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Locker", - "region": "Staff Room", - "original_item": "Shotgun Shells", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_101", - "parent_object": "KeyLocker_Spray", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Attache Case", - "region": "Courtyard", - "original_item": "MAG", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "WP3000", - "parent_object": "Attache_Magnum", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Locker", - "region": "Linen Room", - "original_item": "MAG Ammo", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_103", - "parent_object": "KeyLocker_MagnumBullet", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Supply Cart", - "region": "Treatment Room", - "original_item": "Explosive A", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_207", - "parent_object": "st04_0209_sm70_207_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Item/st04_0209", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Walker", - "region": "Sickroom", - "original_item": "High-Grade Gunpowder", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_206", - "parent_object": "st04_0210_sm70_206_00", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Item/st04_0210", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box", - "region": "Generator Room", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0301_1/gimmick", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Truck", - "region": "Loading Bay", - "original_item": "Explosive B", - "condition": {}, - "item_object": "sm70_208", - "parent_object": "st04_0302_sm70_208_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0302", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Forklift", - "region": "Bioweapons Shipping", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "st04_0402_sm70_001_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0402", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Near Typewriter", - "region": "Shipping Office", - "original_item": "Hip Pouch", - "condition": {}, - "item_object": "sm74_200", - "parent_object": "st04_0406_sm74_200_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0406", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Box on Walkway", - "region": "Warehouse", - "original_item": "Explosive A", - "condition": {}, - "item_object": "sm70_207", - "parent_object": "st04_0403_02_sm70_207_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_02", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box 1", - "region": "Warehouse", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Breakable Box 2", - "region": "Warehouse", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "In Container", - "region": "Warehouse", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "st04_0403_01_sm70_100_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "After Dead End", - "region": "Warehouse", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "st04_0403_01_sm70_002_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Case By Lift", - "region": "Warehouse", - "original_item": "Shell Holder - M3", - "condition": {}, - "item_object": "sm71_102", - "parent_object": "st04_0403_01_sm71_102", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Lift", - "region": "Warehouse", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "st04_0403_02_sm70_100_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_02", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Scissor Lift", - "region": "Warehouse", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "st04_0403_02_sm70_206_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_02", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "In Container By Fuse 1", - "region": "Warehouse", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "st04_0403_01_sm70_205_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "In Container By Fuse 2", - "region": "Warehouse", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "st04_0403_01_sm70_205_01", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "In Container By Fuse 3", - "region": "Warehouse", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "st04_0403_01_sm70_206_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "In Container By Fuse 4", - "region": "Warehouse", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "st04_0403_01_sm70_001_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Boxes Near Fusebox", - "region": "Warehouse", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "st04_0403_01_sm70_205_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Fusebox 1", - "region": "Warehouse", - "original_item": "Fuse 1", - "condition": {}, - "item_object": "sm73_411", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick/FuseBox", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Fusebox 2", - "region": "Warehouse", - "original_item": "Fuse 2", - "condition": {}, - "item_object": "sm73_413", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick/FuseBox", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Fusebox 3", - "region": "Warehouse", - "original_item": "Fuse 3", - "condition": {}, - "item_object": "sm73_412", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick/FuseBox", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Box", - "region": "Small Storage Room", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "st04_0404_sm70_101_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0404", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Attache Case", - "region": "Surveillance Room", - "original_item": "Extended Barrel - MAG", - "condition": {}, - "item_object": "sm71_300", - "parent_object": "st04_0405_sm71_300_00", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0405", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Shelves", - "region": "Laboratory Storage", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/01_LockerRoom" - }, - { - "name": "Near Computers 1", - "region": "Laboratory Storage", - "original_item": "MGL Grenade Launcher", - "condition": {}, - "item_object": "WP4100", - "parent_object": "WP4100", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/99_ReliefWeapon" - }, - { - "name": "Near Computers 2", - "region": "Laboratory Storage", - "original_item": "M3 Shotgun", - "condition": {}, - "item_object": "WP1000", - "parent_object": "WP1000", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/99_ReliefWeapon" - }, - { - "name": "Floor By Door", - "region": "Laboratory Storage", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/01_LockerRoom" - }, - { - "name": "Breakable Box", - "region": "Laboratory Hallway 2F", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0104_0/gimmick" - }, - { - "name": "Shelves", - "region": "Experiment Room", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "By Corpse", - "region": "Experiment Room", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "In Terminal", - "region": "Experiment Room", - "original_item": "Override Key", - "condition": {}, - "item_object": "sm42_503_ES_LabMonitor04A_00_gimmick", - "parent_object": "", - "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0108_0/gimmick" - }, - { - "name": "Storage", - "region": "Lab 1", - "original_item": "Culture Sample", - "condition": {}, - "item_object": "st05_0107_sm41_426_ES_GrowthMachine01A_gimmick", - "parent_object": "", - "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0107_0/gimmick" - }, - { - "name": "On Cart 1", - "region": "Lab 1", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "On Cart 2", - "region": "Lab 1", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "On Box 1", - "region": "Experiment Storage", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "sm70_101", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "On Box 2", - "region": "Experiment Storage", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "On Cart", - "region": "Experiment Storage", - "original_item": "Explosive A", - "condition": {}, - "item_object": "sm70_207", - "parent_object": "sm70_207", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "On Floor", - "region": "Server Room 2F", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "sm70_002", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Cart Near Corpse", - "region": "Server Room 2F", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Case Near Servers", - "region": "Server Room 2F", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_107", - "parent_object": "sm70_107_Acase", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Case By Zombie", - "region": "Server Room", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000_Acase", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Attache Case", - "region": "Bioweapon Incubation Room", - "original_item": "Explosive B", - "condition": {}, - "item_object": "sm70_208", - "parent_object": "sm70_208_Acase", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Attache Case", - "region": "Walkway", - "original_item": "Explosive B", - "condition": {}, - "item_object": "sm70_208", - "parent_object": "sm70_208_Acase", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Attache Case", - "region": "Incubation Lab", - "original_item": "Explosive A", - "condition": {}, - "item_object": "sm70_207", - "parent_object": "sm70_207_Acase", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Cold Storage", - "region": "Incubation Lab", - "original_item": "Liquid-Filled Test Tube", - "condition": {}, - "item_object": "st05_0110_sm41_427_ES_VaccineFreezer01A_gimmick", - "parent_object": "", - "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0110_0/gimmick", - "randomized": 0 - }, - { - "name": "By Case", - "region": "Incubation Lab", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Synthesizer", - "region": "Experiment Room", - "original_item": "Vaccine", - "condition": { - "items": [ - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - "item_object": "sm73_502", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0108_0/gimmick", - "randomized": 0 - }, - { - "name": "Weapon Crate 1", - "region": "Worker's Break Room", - "original_item": "Explosive Rounds", - "condition": {}, - "item_object": "sm70_106", - "parent_object": "sm70_106_Sakuretsu", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" - }, - { - "name": "Weapon Crate 2", - "region": "Worker's Break Room", - "original_item": "Flame Rounds", - "condition": {}, - "item_object": "sm70_108", - "parent_object": "sm70_108_Shoui", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" - }, - { - "name": "Weapon Crate 3", - "region": "Worker's Break Room", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" - }, - { - "name": "Weapon Crate 4", - "region": "Worker's Break Room", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" - }, - { - "name": "Breakable Box", - "region": "Worker's Break Room", - "original_item": "Explosive A", - "condition": {}, - "item_object": "sm70_207", - "parent_object": "ItemPositions", - "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0202_0/gimmick" - }, - { - "name": "Attache Case", - "region": "Disposable Chamber Walkway", - "original_item": "Flame Rounds", - "condition": {}, - "item_object": "sm70_108", - "parent_object": "sm70_108_Acase", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" - }, - { - "name": "Amongst Waste 1", - "region": "Disposable Chamber", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_HG", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" - }, - { - "name": "Amongst Waste 2", - "region": "Disposable Chamber", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000_Kyukyu", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" - }, - { - "name": "Amongst Waste 3", - "region": "Disposable Chamber", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_HG", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" - }, - { - "name": "Amongst Waste 4", - "region": "Disposable Chamber", - "original_item": "Shotgun Shells", - "condition": {}, - "item_object": "sm70_101", - "parent_object": "sm70_101_SG", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" - }, - { - "name": "Near Typewriter", - "region": "Staff Break Room", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Near Shelves", - "region": "Staff Break Room", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 1", - "region": "Weapons Testing Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 2", - "region": "Weapons Testing Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 3", - "region": "Weapons Testing Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 4", - "region": "Weapons Testing Area", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 5", - "region": "Weapons Testing Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 6", - "region": "Weapons Testing Area", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 7", - "region": "Weapons Testing Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 8", - "region": "Weapons Testing Area", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "WP6200", - "parent_object": "wp6200", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 9", - "region": "Weapons Testing Area", - "original_item": "First Aid Spray", - "condition": {}, - "item_object": "sm70_000", - "parent_object": "sm70_000", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Final Fight 10", - "region": "Weapons Testing Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Victory", - "region": "Helipad", - "comment": "This is the standoff on the Helipad, and will give you Victory regardless if you land the shot or not", - "condition": { - "items": [ - "Fire Hose", - "Bolt Cutters", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Safety Deposit Key", - "Battery", - "Tape Player", - "Cassette Tape", - "Locker Room Key", - "Hospital ID Card", - "Vaccine Sample", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube", - "Vaccine" - ] - }, - "item_object": "sm49_501_ES_G19", - "parent_object": "", - "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0501_0/gimmick", - "id": null, - "victory": true - } +[ + { + "name": "By Ticket Gate 1", + "region": "Subway Station", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001_gherb_01", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Ticket Gate 2", + "region": "Subway Station", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001_gherb_02", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Ticket Gate 3", + "region": "Subway Station", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205_GunPowder", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Ticket Gate 4", + "region": "Subway Station", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205_GunPowder", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box", + "region": "Subway Station", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0201_0/gimmick", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Attache Case", + "region": "Subway Station", + "original_item": "Shotgun Shells", + "condition": { + "items": [ + "Lock Pick" + ] + }, + "item_object": "sm70_101", + "parent_object": "sm70_101", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Clock Puzzle - 1st Jewel", + "region": "Subway Station", + "original_item": "Hand Grenade", + "condition": { + "items": [ + "Red Jewel" + ] + }, + "item_object": "WP6200", + "parent_object": "ItemPositions_Jewel_1", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/JewelryBox", + "randomized": 0 + }, + { + "name": "Clock Puzzle - 2nd Jewel", + "region": "Subway Station", + "original_item": "Tactical Stock - M3", + "condition": { + "items": [ + "Red Jewel", + "Blue Jewel" + ] + }, + "item_object": "sm71_101", + "parent_object": "ItemPositions_Jewel_2", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/JewelryBox", + "randomized": 0 + }, + { + "name": "Clock Puzzle - 3rd Jewel", + "region": "Subway Station", + "original_item": "Hip Pouch", + "condition": { + "items": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel" + ] + }, + "item_object": "sm74_200", + "parent_object": "ItemPositions_Jewel_3", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/JewelryBox", + "randomized": 0 + }, + { + "name": "On Barrel in Alley", + "region": "South Avenue", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_hgshell", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area" + }, + { + "name": "Breakable Box", + "region": "Main Avenue", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0208_0/gimmick" + }, + { + "name": "Box By Donut Shop", + "region": "Shopping Plaza", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area" + }, + { + "name": "By Coffee Machines", + "region": "Donut Shop", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_hgshell", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/_DounutShop_Inside" + }, + { + "name": "Table By Zombie Couple", + "region": "Donut Shop", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/_DounutShop_Inside" + }, + { + "name": "Inside Kitchen 1", + "region": "Donut Shop", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_051", + "parent_object": "sm70_051", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/_DounutShop_Inside", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Inside Kitchen 2", + "region": "Donut Shop", + "original_item": "Red Jewel", + "condition": {}, + "item_object": "sm73_313", + "parent_object": "sm73_313", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "South Side Breakable Box", + "region": "Business Street", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0219_0/gimmick" + }, + { + "name": "North Side Breakable Box", + "region": "Business Street", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0216_0/gimmick" + }, + { + "name": "Table Next to Donut Shop", + "region": "Business Street", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Street" + }, + { + "name": "Floor in Hallway", + "region": "Subway Office", + "original_item": "Fire Hose", + "condition": {}, + "item_object": "sm74_203", + "parent_object": "sm74_203", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem" + }, + { + "name": "Middle Locker", + "region": "Subway Office", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "WP6200", + "parent_object": "600_wp6200_grenade_00_In_LockedLocker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" + }, + { + "name": "Right Locker", + "region": "Subway Office", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205_gunp_In_Locker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" + }, + { + "name": "Table By Downed Zombie", + "region": "Pharmacy", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Pharamacy" + }, + { + "name": "Shelves", + "region": "Pharmacy", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206_chemi", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Pharamacy" + }, + { + "name": "Box By Register", + "region": "Pharmacy", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001_greenherb", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Pharamacy" + }, + { + "name": "Safe", + "region": "Drugstore Storage", + "original_item": "Dot Sight - G19", + "condition": {}, + "item_object": "0232_sm42_019_SafeBoxDial01A_00_control", + "parent_object": "", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/SafeBox" + }, + { + "name": "In Drawer By Safe", + "region": "Drugstore Storage", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205_gunp_chestpos", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_500_Owner_House" + }, + { + "name": "Storage Entry", + "region": "Drugstore Storage", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_hgsehll", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_500_Owner_House" + }, + { + "name": "Breakable Box", + "region": "Building Rooftop", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0213_0/gimmick" + }, + { + "name": "Downed Zombie", + "region": "Building Rooftop", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_400_Signboard_Area" + }, + { + "name": "Tool Cabinet", + "region": "Tool Shop", + "original_item": "Bolt Cutters", + "condition": {}, + "item_object": "sm73_001", + "parent_object": "sm73_001", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem", + "randomized": 0 + }, + { + "name": "On Table", + "region": "Garage", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "sm70_101_sgshell", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_700_Garage", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Downed UCBS Merc", + "region": "Back Alley", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_700_Garage" + }, + { + "name": "Breakable Box", + "region": "Back Alley", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0226_0/gimmick" + }, + { + "name": "Right Locker", + "region": "Substation", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205_gunp_Locker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Building_Inside", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table", + "region": "Substation", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "sm70_002_rherb", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Building_Inside", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Control Room", + "region": "Substation", + "original_item": "Hip Pouch", + "condition": {}, + "item_object": "sm74_200", + "parent_object": "sm74_200_SideBag", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Building_Inside", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Storage Racks 1", + "region": "Outdoor Area", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Deimos_Area/HerbPlanter", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Storage Racks 2", + "region": "Outdoor Area", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Deimos_Area/HerbPlanter", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Corpse", + "region": "Outdoor Area", + "original_item": "Lock Pick", + "condition": {}, + "item_object": "EventPlay_EV322_k", + "parent_object": "", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/Scenario/S03_1000/ES_S03_1000", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box", + "region": "Outdoor Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0402_0/gimmick", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Portable Generator", + "region": "Power Maze", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Deimos_Area", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Power Breaker", + "region": "Power Maze", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Deimos_Area", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box", + "region": "Power Maze", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0402_0/gimmick", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Left Locker", + "region": "Substation", + "original_item": "Handgun Ammo", + "condition": { + "items": [ + "Lock Pick" + ] + }, + "item_object": "sm70_100", + "parent_object": "sm70_100_KeyPickLocker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_800_Substaion_Area/I_Building_Inside", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "1st Nemesis Case", + "region": "Nemesis Chase", + "original_item": "Extended Mag - G19", + "condition": {}, + "item_object": "sm77_000", + "parent_object": "sm77_000", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/NemesisDropItems" + }, + { + "name": "Locker", + "region": "Tool Shop", + "original_item": "First Aid Spray", + "condition": { + "items": [ + "Lock Pick" + ] + }, + "item_object": "sm70_000", + "parent_object": "sm70_000spray_keylockpos", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_700_Garage", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Locker", + "region": "Donut Shop", + "original_item": "Hand Grenade", + "condition": { + "items": [ + "Lock Pick" + ] + }, + "item_object": "WP6200", + "parent_object": "wp6200_grenade_In_LockedLocker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/_DounutShop_Inside", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Barrel", + "region": "Side Alley", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Street" + }, + { + "name": "On Corpse", + "region": "Side Alley", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "WP6200", + "parent_object": "600_wp6200_grenade_02", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Street" + }, + { + "name": "Attache Case", + "region": "Side Alley", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "sm70_101_InCase", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_Street" + }, + { + "name": "In Case Of Emergency", + "region": "Subway Office", + "original_item": "M3 Shotgun", + "condition": { + "items": [ + "Bolt Cutters" + ] + }, + "item_object": "WP1000", + "parent_object": "WP1000", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon" + }, + { + "name": "Left Locker", + "region": "Subway Office", + "original_item": "First Aid Spray", + "condition": { + "items": [ + "Lock Pick" + ] + }, + "item_object": "sm70_000", + "parent_object": "600_wp6200_grenade_01_In_LockedLocker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" + }, + { + "name": "Attache Case", + "region": "Subway Office", + "original_item": "Shotgun Shells", + "condition": { + "items": [ + "Lock Pick" + ] + }, + "item_object": "sm70_101", + "parent_object": "sm70_101_InCase", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_PTCRoom" + }, + { + "name": "2nd Nemesis Case", + "region": "Nemesis Chase", + "original_item": "Moderator - G19", + "condition": {}, + "item_object": "sm77_001", + "parent_object": "sm77_001", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/NemesisDropItems" + }, + { + "name": "Counter", + "region": "Toy Shop", + "original_item": "Green Jewel", + "condition": {}, + "item_object": "sm73_311", + "parent_object": "sm73_311", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem" + }, + { + "name": "Counter By Door", + "region": "Supermarket", + "original_item": "Blue Jewel", + "condition": {}, + "item_object": "sm73_312", + "parent_object": "sm73_312", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem" + }, + { + "name": "North East Shelves", + "region": "Supermarket", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area/I_205_SuperMarket" + }, + { + "name": "Center Shelves", + "region": "Supermarket", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area/I_205_SuperMarket" + }, + { + "name": "3rd Nemesis Case", + "region": "Nemesis Chase", + "original_item": "Supply Case - Shotgun Shells", + "condition": {}, + "item_object": "sm77_002", + "parent_object": "sm77_002", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/NemesisDropItems" + }, + { + "name": "Subway Access Passage", + "region": "Nemesis Chase", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/EmployeePassage" + }, + { + "name": "Subway Storeroom", + "region": "Nemesis Chase", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/EmployeePassage" + }, + { + "name": "Table", + "region": "Manager's Office", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "sm70_002", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Safe_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Left Locker", + "region": "Manager's Office", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_107", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Safe_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Right Locker", + "region": "Manager's Office", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Safe_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Near Ladder", + "region": "East Tunnel", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "WP6200", + "parent_object": "wp6200", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Cart", + "region": "South Office", + "original_item": "MGL Grenade Launcher", + "condition": {}, + "item_object": "WP4100", + "parent_object": "WP4100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Barrel", + "region": "South Office", + "original_item": "Explosive B", + "condition": {}, + "item_object": "sm70_208", + "parent_object": "sm70_208", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Grenade_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Before Laboratory", + "region": "West Tunnel", + "original_item": "Flame Rounds", + "condition": {}, + "item_object": "sm70_108", + "parent_object": "sm70_108", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Floor By Lockers", + "region": "Sewer Laboratory", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_BatteryKey_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Left Locker", + "region": "Sewer Laboratory", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205_InLocker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_BatteryKey_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Locked Locker", + "region": "Sewer Laboratory", + "original_item": "Explosive A", + "condition": {}, + "item_object": "sm70_207", + "parent_object": "sm70_207_In_LockedLocker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_BatteryKey_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Refrigerator", + "region": "Sewer Laboratory", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_BatteryKey_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Cart", + "region": "Sewer Laboratory", + "original_item": "Battery Pack", + "condition": {}, + "item_object": "sm73_305", + "parent_object": "sm73_305", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box", + "region": "Northwest Tunnel", + "original_item": "Explosive B", + "condition": {}, + "item_object": "sm70_208", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0611_0/gimmick", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Corpse", + "region": "Northwest Tunnel", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "sm70_101_sgshell", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table 1", + "region": "Security Room", + "original_item": "Explosive A", + "condition": {}, + "item_object": "sm70_207", + "parent_object": "sm70_207", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Security_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table 2", + "region": "Security Room", + "original_item": "Hip Pouch", + "condition": {}, + "item_object": "sm74_200", + "parent_object": "sm74_200_SideBag", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Security_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table 3", + "region": "Security Room", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/I_Security_Room", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table", + "region": "Demolition Site Storage", + "original_item": "Explosive A", + "condition": {}, + "item_object": "sm70_207", + "parent_object": "sm70_207", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_SafeRoom", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Floor Near Ladder", + "region": "Demolition Site Storage", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_SafeRoom", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Case on North Scaffolding", + "region": "Demolition Site Roof", + "original_item": "Explosive Rounds", + "condition": {}, + "item_object": "sm70_106", + "parent_object": "sm70_106_InCase", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Case on South Scaffolding", + "region": "Demolition Site Roof", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_051", + "parent_object": "sm70_001_InCase", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Lumber", + "region": "Demolition Site Roof", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001_gherb", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On South Scaffolding", + "region": "Demolition Site Roof", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "sm70_002_rherb", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Box By Portable Generator 1", + "region": "Demolition Site Roof", + "original_item": "Explosive Rounds", + "condition": {}, + "item_object": "sm70_106", + "parent_object": "sm70_106_greexplo", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Box By Portable Generator 2", + "region": "Demolition Site Roof", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_hgshell", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Generator", + "region": "Demolition Site Roof", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "sm70_101_sgshell", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1000_Construction/I_Construction_10F", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Car Next to Fire Truck", + "region": "Industry Street", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_RPD_Street" + }, + { + "name": "Case Near RPD Garage", + "region": "Outside Gun Shop", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206_InCase", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_RPD_Street", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "In Display Case", + "region": "Gun Shop", + "original_item": "Explosive B", + "condition": {}, + "item_object": "sm70_208", + "parent_object": "sm70_208", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Weapon Crate", + "region": "Gun Shop", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001_greenherb", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Shelf 1", + "region": "Gun Shop", + "original_item": "Semi-Auto Barrel - M3", + "condition": {}, + "item_object": "sm71_100", + "parent_object": "sm71_100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Shelf 2", + "region": "Gun Shop", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Shelf 3", + "region": "Gun Shop", + "original_item": "Explosive A", + "condition": {}, + "item_object": "sm70_207", + "parent_object": "sm70_207", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Display Case", + "region": "Gun Shop", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_KendoShop", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Key Cabinet", + "region": "Gun Shop", + "original_item": "Kendo Gate Key", + "condition": {}, + "item_object": "sm73_301", + "parent_object": "sm73_301", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Zombie", + "region": "Small Alley", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "sm70_002_redherb", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_2Fhouse", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "2F Attache Case", + "region": "House", + "original_item": "Explosive Rounds", + "condition": { + "items": [ + "Lock Pick" + ] + }, + "item_object": "sm70_106", + "parent_object": "sm70_106_greexplo", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/I_2Fhouse", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box", + "region": "Scaffolding", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_DownTown/Environments/st03_0228_0/gimmick" + }, + { + "name": "4th Nemesis Case", + "region": "Shopping Plaza", + "original_item": "Supply Case - Flame Rounds", + "condition": { + "items": [ + "Kendo Gate Key", + "Lock Pick", + "Bolt Cutters", + "Fire Hose", + "Battery Pack" + ] + }, + "item_object": "sm77_004", + "parent_object": "sm77_004", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/NemesisDropItems" + }, + { + "name": "Breakable Box", + "region": "East Courtyard", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0301_0/gimmick_Escape", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Near Breakable Box", + "region": "East Courtyard", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "sm70_002_0301", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Brad's Corpse", + "region": "RPD Entrance", + "original_item": "ID Card", + "condition": {}, + "item_object": "sm73_203", + "parent_object": "sm73_203", + "folder_path": "RopewayManagers/TemporaryObjects/Enemy", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Crates Near Medallion Statue", + "region": "Main Lobby", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Waiting Room Barricade", + "region": "Main Lobby", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "ID Case", + "region": "RPD Reception", + "original_item": "Assault Rifle Ammo", + "condition": { + "items": [ + "ID Card" + ] + }, + "item_object": "sm70_102", + "parent_object": "ItemPositions_sm41_410", + "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0202_0/gimmick_Escape", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table", + "region": "Operations Room", + "original_item": "Flash Grenade", + "condition": {}, + "item_object": "WP6300", + "parent_object": "WP6300", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table", + "region": "Operations Room 2", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "sm70_102", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box", + "region": "West Hallway 1F", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0217_0/gimmick_Escape", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "ID Case", + "region": "West Office", + "original_item": "Scope - Assault Rifle", + "condition": { + "items": [ + "ID Card" + ] + }, + "item_object": "sm71_200", + "parent_object": "ItemPositions_sm41_410", + "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0208_0/gimmick_Escape", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Locker", + "region": "West Office", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "ItemPositions_NormalLocker_1FW_OfficeW", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Desk Near Safe", + "region": "West Office", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Safe", + "region": "West Office", + "original_item": "Hip Pouch", + "condition": {}, + "item_object": "sm42_019_SafeBoxDial01A_OfficeW_control", + "parent_object": "", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/1FW/WestOffice/IronSafe_1FWOffice", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Cabinet Near Reception Window", + "region": "West Office", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "sm70_002_WestOffice", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Reception Window", + "region": "West Office", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Right Locker", + "region": "Darkroom", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "ItemPositions_NormalLocker_1FW3DarkRoom", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Left Locker", + "region": "Darkroom", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "ItemPositions_NormalLocker_1FW1DarkRoom", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box", + "region": "West Hallway 3F", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0603_0/gimmick_Escape", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "DCM Locker", + "region": "West Hallway 3F", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "ItemPositions_NormalLocker_3FWCorridor", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Box", + "region": "West Hallway 3F", + "original_item": "Safety Deposit Key", + "condition": {}, + "item_object": "sm73_201", + "parent_object": "sm73_201", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "randomized": 0 + }, + { + "name": "Locker 104", + "region": "Safety Deposit Room", + "original_item": "Battery", + "condition": {}, + "item_object": "sm73_200", + "parent_object": "sm73_200_Bomb_Locker104", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/1FW/hokanko/HokankoLocker/HokankoItems", + "randomized": 0 + }, + { + "name": "Locker 106", + "region": "Safety Deposit Room", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "sm70_102_Asshell_Locker106", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/1FW/hokanko/HokankoLocker/HokankoItems", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Locker 109", + "region": "Safety Deposit Room", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "RPD_Mess_ItemGet_109", + "parent_object": "", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Scenario/S02_0400/ES_S02_0400/Msg", + "randomized": 0 + }, + { + "name": "On Cabinet", + "region": "Safety Deposit Room", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001_Hokanko", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Towel Rack", + "region": "Shower Room", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "CAP Locker", + "region": "Shower Room", + "original_item": "Flash Grenade", + "condition": {}, + "item_object": "WP6300", + "parent_object": "ItemPositions_NormalLocker_2FW2Corridor", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Shower Wall", + "region": "Shower Room", + "original_item": "Electronic Gadget", + "condition": {}, + "item_object": "sm73_204", + "parent_object": "ItemPositionsForBarricade", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Scenario/S02_0300/ES_S02_0300/ShowerRoomBlownUp", + "randomized": 0 + }, + { + "name": "On Bench", + "region": "Shower Room", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "sm70_102", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" + }, + { + "name": "Right Locker", + "region": "Shower Room", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "ItemPositions_NormalLocker_2FW10LockerRoom", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker" + }, + { + "name": "Left Locker", + "region": "Shower Room", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "ItemPositions_NormalLocker_2FW9LockerRoom", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/LocationFsm_RPD/common/ES_common/GeneralPurposeGimmicks/OpenLocker" + }, + { + "name": "By Linen Room", + "region": "West Hallway 2F", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "sm70_102", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" + }, + { + "name": "ID Case", + "region": "STARS Office", + "original_item": "Assault Rifle Ammo", + "condition": { + "items": [ + "ID Card" + ] + }, + "item_object": "sm70_102", + "parent_object": "ItemPositions_sm41_410", + "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0404_0/gimmick_Escape" + }, + { + "name": "Desk By Armory", + "region": "STARS Office", + "original_item": "Flash Grenade", + "condition": {}, + "item_object": "WP6300", + "parent_object": "WP6300_StarsOffice", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" + }, + { + "name": "First Aid Kit", + "region": "STARS Office", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000_StarsOffice", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" + }, + { + "name": "Box By Entrance", + "region": "STARS Office", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "sm70_002_StarsOffice", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common" + }, + { + "name": "Bench 1", + "region": "Dilapidated Shelter", + "original_item": "Mine Rounds", + "condition": {}, + "item_object": "sm70_105", + "parent_object": "sm70_105mine", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item/SafeRoom", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Bench 2", + "region": "Dilapidated Shelter", + "original_item": "Mine Rounds", + "condition": {}, + "item_object": "sm70_105", + "parent_object": "sm70_105mine", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item/SafeRoom", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Bench 3", + "region": "Dilapidated Shelter", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000_spray", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item/SafeRoom", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Chair", + "region": "Dilapidated Shelter", + "original_item": "M3 Shotgun", + "condition": {}, + "item_object": "WP1000", + "parent_object": "WP1000", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Barrel", + "region": "Dilapidated Shelter", + "original_item": "MGL Grenade Launcher", + "condition": {}, + "item_object": "WP4100", + "parent_object": "WP4100", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Bench By Waterside", + "region": "Promenade", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100hgsell", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Bench Near Statues", + "region": "Promenade", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001gherb", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box", + "region": "Promenade", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0804_0/gimmick", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample" + ] + }, + { + "name": "Breakable Box By School Bus", + "region": "Plaza", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" + }, + { + "name": "Breakable Box By City Bus", + "region": "Plaza", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" + }, + { + "name": "By School Bus 1", + "region": "Plaza", + "original_item": "Flame Rounds", + "condition": {}, + "item_object": "sm70_108", + "parent_object": "sm70_108", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" + }, + { + "name": "By School Bus 2", + "region": "Plaza", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100hgshell_Car04A_01", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" + }, + { + "name": "Behind Statue", + "region": "Plaza", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001gherb", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" + }, + { + "name": "Inside Van", + "region": "Plaza", + "original_item": "Mine Rounds", + "condition": {}, + "item_object": "sm70_105", + "parent_object": "sm70_105mine_Van04B_01", + "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" + }, + { + "name": "Inside Patrol Car", + "region": "Plaza", + "original_item": "Mine Rounds", + "condition": {}, + "item_object": "sm70_105", + "parent_object": "sm70_105mine_Car01A_Ch3_2_00", + "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" + }, + { + "name": "By City Bus 1", + "region": "Plaza", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "sm70_101sgshell", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" + }, + { + "name": "By City Bus 2", + "region": "Plaza", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100hgshell", + "folder_path": "RopewayContents/World/Location_ClockTower/LocationLevel_ClockTower/Item" + }, + { + "name": "Inside SWAT Truck", + "region": "Plaza", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "sm70_101sgshell_Car01B_00", + "folder_path": "RopewayContents/World/Location_ClockTower/Environments/st03_0806_0/gimmick" + }, + { + "name": "By Doors", + "region": "Makeshift Sickroom", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0101_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0101" + }, + { + "name": "Admissions Desk 1", + "region": "Hospital Lobby", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0102_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0102" + }, + { + "name": "Admissions Desk 2", + "region": "Hospital Lobby", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "st04_0102_sm70_000_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0102" + }, + { + "name": "Reception Desk", + "region": "Hospital Reception", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "st04_0103_sm70_002_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0103" + }, + { + "name": "Reception Desk", + "region": "Laboratory Reception", + "original_item": "Tape Player", + "condition": {}, + "item_object": "sm73_403", + "parent_object": "sm73_403(CassetPlayer)", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/KeyItem" + }, + { + "name": "By Couch", + "region": "Laboratory Reception", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "st04_0105_sm70_001_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0105" + }, + { + "name": "Breakable Box Near Operating Room", + "region": "Emergency Entrance", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital/Environments/st04_0107_0/gimmick" + }, + { + "name": "Table", + "region": "Emergency Entrance", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0107_sm70_102_01", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0107" + }, + { + "name": "Gurney", + "region": "Main Corridor 2F", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "st04_0202_sm70_100_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0202" + }, + { + "name": "Shelves", + "region": "Main Corridor 2F", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0202_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0202" + }, + { + "name": "Shelf", + "region": "Records Room", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0203_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0203" + }, + { + "name": "By Typewriter", + "region": "Records Room", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "st04_0203_sm70_001_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0203" + }, + { + "name": "Stepstool", + "region": "Records Room", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "st04_0203_sm70_100_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0203" + }, + { + "name": "Table", + "region": "Staff Room", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0204_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0204" + }, + { + "name": "Safe", + "region": "Nurse Station", + "original_item": "Dual Magazine - Assault Rifle", + "condition": {}, + "item_object": "0101_sm42_019_SafeBoxDial01A_control", + "parent_object": "", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/LocationFsm_Hospital/common/ES_common/SafeBox" + }, + { + "name": "Overbed Table 1", + "region": "Sickroom", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "st04_0210_sm70_001_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0210" + }, + { + "name": "Overbed Table 2", + "region": "Sickroom", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0210_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0210" + }, + { + "name": "Supply Cart", + "region": "Sickroom", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "WP6200", + "parent_object": "st04_0210_wp6200_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0210" + }, + { + "name": "Southside", + "region": "Courtyard", + "original_item": "Tactical Grip - Assault Rifle", + "condition": {}, + "item_object": "sm71_202", + "parent_object": "st04_0113_sm71_202", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0113" + }, + { + "name": "Northwest Corner 1", + "region": "Courtyard", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "st04_0113_sm70_001_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0113" + }, + { + "name": "Northwest Corner 2", + "region": "Courtyard", + "original_item": "Locker Room Key", + "condition": {}, + "item_object": "sm73_407", + "parent_object": "sm73_407(Key)", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/KeyItem" + }, + { + "name": "Near Courtyard Exit", + "region": "Main Corridor", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0104_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0104" + }, + { + "name": "West Locker", + "region": "Locker Room", + "original_item": "Hospital ID Card", + "condition": {}, + "item_object": "sm73_400", + "parent_object": "Locker_cardkey", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", + "randomized": 0 + }, + { + "name": "North Locker", + "region": "Locker Room", + "original_item": "Flash Grenade", + "condition": {}, + "item_object": "WP6300", + "parent_object": "Locker_Senko", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem" + }, + { + "name": "By Locker", + "region": "Linen Room", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0206_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0206" + }, + { + "name": "Stepstool", + "region": "Linen Room", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "st04_0206_sm70_002_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0206" + }, + { + "name": "Overbed Table 1", + "region": "Treatment Room", + "original_item": "Cassette Tape", + "condition": {}, + "item_object": "sm73_402", + "parent_object": "sm73_402(Tape)", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/KeyItem", + "randomized": 0 + }, + { + "name": "Overbed Table 2", + "region": "Treatment Room", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0209_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0209" + }, + { + "name": "Cart 1", + "region": "Operating Room", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "st04_0108_sm70_001_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" + }, + { + "name": "Cart 2", + "region": "Operating Room", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "st04_0108_sm70_100_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" + }, + { + "name": "Cart 3", + "region": "Operating Room", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0108_sm70_102_01", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0108" + }, + { + "name": "Cart 4", + "region": "Operating Room", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0108_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0108" + }, + { + "name": "Cart 5", + "region": "Operating Room", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "WP6200", + "parent_object": "st04_0108_wp6100_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" + }, + { + "name": "Cart 6", + "region": "Operating Room", + "original_item": "Flash Grenade", + "condition": {}, + "item_object": "WP6300", + "parent_object": "st04_0108_Wp6300_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" + }, + { + "name": "Cart 7", + "region": "Operating Room", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "WP6200", + "parent_object": "st04_0108_wp6100_01", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" + }, + { + "name": "Cart 8", + "region": "Operating Room", + "original_item": "Flash Grenade", + "condition": {}, + "item_object": "WP6300", + "parent_object": "st04_0108_Wp6300_01", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0108" + }, + { + "name": "Breakable Box Near Locker", + "region": "Emergency Entrance", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital/Environments/st04_0107_0/gimmick" + }, + { + "name": "Desk 1", + "region": "Research Laboratory", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0109_sm70_102_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0109" + }, + { + "name": "Desk 2", + "region": "Research Laboratory", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "st04_0109_sm70_100_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0109" + }, + { + "name": "Desk 3", + "region": "Research Laboratory", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "st04_0109_sm70_001_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/st04_0109" + }, + { + "name": "Desk 4", + "region": "Research Laboratory", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "st04_0109_sm70_102_01", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0109" + }, + { + "name": "Cold Storage", + "region": "Sample Room", + "original_item": "Vaccine Sample", + "condition": {}, + "item_object": "sm73_404", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital/Environments/gmk_door", + "randomized": 0 + }, + { + "name": "Tyrell-FAS", + "region": "Makeshift Sickroom", + "original_item": "First Aid Spray", + "condition": { + "items": [ + "Vaccine Sample" + ] + }, + "item_object": "sm70_000", + "parent_object": "st04_0101_sm70_000_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/Item/st04_0101" + }, + { + "name": "Weapon Crate", + "region": "Hospital Lobby", + "original_item": "Detonator", + "condition": { + "items": [ + "Vaccine Sample" + ] + }, + "item_object": "sm73_406", + "parent_object": "sm73_406", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common/RoujousenRepopItem", + "randomized": 0 + }, + { + "name": "By Doors 1", + "region": "Makeshift Sickroom", + "original_item": "G18", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "WP0100", + "parent_object": "G18_Handgun", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Wepon", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Doors 2", + "region": "Makeshift Sickroom", + "original_item": "Flash Grenade", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_100", + "parent_object": "st04_0101_sm70_100_01", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Item/st04_0101", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box Near Sickroom", + "region": "Hospital Lobby", + "original_item": "Handgun Ammo", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital/Environments/st04_0102_0/gimmick_Hospital2", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box Near Reception", + "region": "Hospital Lobby", + "original_item": "Handgun Ammo", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital/Environments/st04_0102_0/gimmick_Hospital2", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Attache Case", + "region": "Main Corridor", + "original_item": "MAG Ammo", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_103", + "parent_object": "KeyAttache_MagnumBullet", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Locker", + "region": "Emergency Entrance", + "original_item": "Explosive Rounds", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_106", + "parent_object": "KeyLocker_GrenadeLauncherBullet", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Bard", + "region": "Research Laboratory", + "original_item": "Explosive B", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_208", + "parent_object": "st04_0109_sm70_208_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Item/st04_0109", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Locker", + "region": "Staff Room", + "original_item": "Shotgun Shells", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_101", + "parent_object": "KeyLocker_Spray", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Attache Case", + "region": "Courtyard", + "original_item": "MAG", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "WP3000", + "parent_object": "Attache_Magnum", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Locker", + "region": "Linen Room", + "original_item": "MAG Ammo", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_103", + "parent_object": "KeyLocker_MagnumBullet", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Supply Cart", + "region": "Treatment Room", + "original_item": "Explosive A", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_207", + "parent_object": "st04_0209_sm70_207_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Item/st04_0209", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Walker", + "region": "Sickroom", + "original_item": "High-Grade Gunpowder", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_206", + "parent_object": "st04_0210_sm70_206_00", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/ES_common_Hospital2/Item/st04_0210", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box", + "region": "Generator Room", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0301_1/gimmick", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Truck", + "region": "Loading Bay", + "original_item": "Explosive B", + "condition": {}, + "item_object": "sm70_208", + "parent_object": "st04_0302_sm70_208_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0302", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Forklift", + "region": "Bioweapons Shipping", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "st04_0402_sm70_001_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0402", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Near Typewriter", + "region": "Shipping Office", + "original_item": "Hip Pouch", + "condition": {}, + "item_object": "sm74_200", + "parent_object": "st04_0406_sm74_200_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0406", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Box on Walkway", + "region": "Warehouse", + "original_item": "Explosive A", + "condition": {}, + "item_object": "sm70_207", + "parent_object": "st04_0403_02_sm70_207_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_02", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box 1", + "region": "Warehouse", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Breakable Box 2", + "region": "Warehouse", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "In Container", + "region": "Warehouse", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "st04_0403_01_sm70_100_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "After Dead End", + "region": "Warehouse", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "st04_0403_01_sm70_002_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Case By Lift", + "region": "Warehouse", + "original_item": "Shell Holder - M3", + "condition": {}, + "item_object": "sm71_102", + "parent_object": "st04_0403_01_sm71_102", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Lift", + "region": "Warehouse", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "st04_0403_02_sm70_100_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_02", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Scissor Lift", + "region": "Warehouse", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "st04_0403_02_sm70_206_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_02", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "In Container By Fuse 1", + "region": "Warehouse", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "st04_0403_01_sm70_205_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "In Container By Fuse 2", + "region": "Warehouse", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "st04_0403_01_sm70_205_01", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "In Container By Fuse 3", + "region": "Warehouse", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "st04_0403_01_sm70_206_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "In Container By Fuse 4", + "region": "Warehouse", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "st04_0403_01_sm70_001_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Boxes Near Fusebox", + "region": "Warehouse", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "st04_0403_01_sm70_205_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0403_01", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Fusebox 1", + "region": "Warehouse", + "original_item": "Fuse 1", + "condition": {}, + "item_object": "sm73_411", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick/FuseBox", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Fusebox 2", + "region": "Warehouse", + "original_item": "Fuse 2", + "condition": {}, + "item_object": "sm73_413", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick/FuseBox", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Fusebox 3", + "region": "Warehouse", + "original_item": "Fuse 3", + "condition": {}, + "item_object": "sm73_412", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Hospital2/Environments/st04_0403_1/gimmick/FuseBox", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Box", + "region": "Small Storage Room", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "st04_0404_sm70_101_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0404", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Attache Case", + "region": "Surveillance Room", + "original_item": "Extended Barrel - MAG", + "condition": {}, + "item_object": "sm71_300", + "parent_object": "st04_0405_sm71_300_00", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0405", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Shelves", + "region": "Laboratory Storage", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/01_LockerRoom" + }, + { + "name": "Near Computers 1", + "region": "Laboratory Storage", + "original_item": "MGL Grenade Launcher", + "condition": {}, + "item_object": "WP4100", + "parent_object": "WP4100", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/99_ReliefWeapon" + }, + { + "name": "Near Computers 2", + "region": "Laboratory Storage", + "original_item": "M3 Shotgun", + "condition": {}, + "item_object": "WP1000", + "parent_object": "WP1000", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/99_ReliefWeapon" + }, + { + "name": "Floor By Door", + "region": "Laboratory Storage", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/01_LockerRoom" + }, + { + "name": "Breakable Box", + "region": "Laboratory Hallway 2F", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0104_0/gimmick" + }, + { + "name": "Shelves", + "region": "Experiment Room", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "By Corpse", + "region": "Experiment Room", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "In Terminal", + "region": "Experiment Room", + "original_item": "Override Key", + "condition": {}, + "item_object": "sm42_503_ES_LabMonitor04A_00_gimmick", + "parent_object": "", + "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0108_0/gimmick" + }, + { + "name": "Storage", + "region": "Lab 1", + "original_item": "Culture Sample", + "condition": {}, + "item_object": "st05_0107_sm41_426_ES_GrowthMachine01A_gimmick", + "parent_object": "", + "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0107_0/gimmick" + }, + { + "name": "On Cart 1", + "region": "Lab 1", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "On Cart 2", + "region": "Lab 1", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "On Box 1", + "region": "Experiment Storage", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "sm70_101", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "On Box 2", + "region": "Experiment Storage", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "On Cart", + "region": "Experiment Storage", + "original_item": "Explosive A", + "condition": {}, + "item_object": "sm70_207", + "parent_object": "sm70_207", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "On Floor", + "region": "Server Room 2F", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "sm70_002", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Cart Near Corpse", + "region": "Server Room 2F", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Case Near Servers", + "region": "Server Room 2F", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_107", + "parent_object": "sm70_107_Acase", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Case By Zombie", + "region": "Server Room", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000_Acase", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Attache Case", + "region": "Bioweapon Incubation Room", + "original_item": "Explosive B", + "condition": {}, + "item_object": "sm70_208", + "parent_object": "sm70_208_Acase", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Attache Case", + "region": "Walkway", + "original_item": "Explosive B", + "condition": {}, + "item_object": "sm70_208", + "parent_object": "sm70_208_Acase", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Attache Case", + "region": "Incubation Lab", + "original_item": "Explosive A", + "condition": {}, + "item_object": "sm70_207", + "parent_object": "sm70_207_Acase", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Cold Storage", + "region": "Incubation Lab", + "original_item": "Liquid-Filled Test Tube", + "condition": {}, + "item_object": "st05_0110_sm41_427_ES_VaccineFreezer01A_gimmick", + "parent_object": "", + "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0110_0/gimmick", + "randomized": 0 + }, + { + "name": "By Case", + "region": "Incubation Lab", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Synthesizer", + "region": "Experiment Room", + "original_item": "Vaccine", + "condition": { + "items": [ + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + "item_object": "sm73_502", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0108_0/gimmick", + "randomized": 0 + }, + { + "name": "Weapon Crate 1", + "region": "Worker's Break Room", + "original_item": "Explosive Rounds", + "condition": {}, + "item_object": "sm70_106", + "parent_object": "sm70_106_Sakuretsu", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" + }, + { + "name": "Weapon Crate 2", + "region": "Worker's Break Room", + "original_item": "Flame Rounds", + "condition": {}, + "item_object": "sm70_108", + "parent_object": "sm70_108_Shoui", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" + }, + { + "name": "Weapon Crate 3", + "region": "Worker's Break Room", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" + }, + { + "name": "Weapon Crate 4", + "region": "Worker's Break Room", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" + }, + { + "name": "Breakable Box", + "region": "Worker's Break Room", + "original_item": "Explosive A", + "condition": {}, + "item_object": "sm70_207", + "parent_object": "ItemPositions", + "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0202_0/gimmick" + }, + { + "name": "Attache Case", + "region": "Disposable Chamber Walkway", + "original_item": "Flame Rounds", + "condition": {}, + "item_object": "sm70_108", + "parent_object": "sm70_108_Acase", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" + }, + { + "name": "Amongst Waste 1", + "region": "Disposable Chamber", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_HG", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" + }, + { + "name": "Amongst Waste 2", + "region": "Disposable Chamber", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000_Kyukyu", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" + }, + { + "name": "Amongst Waste 3", + "region": "Disposable Chamber", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_HG", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" + }, + { + "name": "Amongst Waste 4", + "region": "Disposable Chamber", + "original_item": "Shotgun Shells", + "condition": {}, + "item_object": "sm70_101", + "parent_object": "sm70_101_SG", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/03_Room01" + }, + { + "name": "Near Typewriter", + "region": "Staff Break Room", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Near Shelves", + "region": "Staff Break Room", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 1", + "region": "Weapons Testing Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 2", + "region": "Weapons Testing Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 3", + "region": "Weapons Testing Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 4", + "region": "Weapons Testing Area", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 5", + "region": "Weapons Testing Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 6", + "region": "Weapons Testing Area", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 7", + "region": "Weapons Testing Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 8", + "region": "Weapons Testing Area", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "WP6200", + "parent_object": "wp6200", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 9", + "region": "Weapons Testing Area", + "original_item": "First Aid Spray", + "condition": {}, + "item_object": "sm70_000", + "parent_object": "sm70_000", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Final Fight 10", + "region": "Weapons Testing Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Victory", + "region": "Helipad", + "comment": "This is the standoff on the Helipad, and will give you Victory regardless if you land the shot or not", + "condition": { + "items": [ + "Fire Hose", + "Bolt Cutters", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Safety Deposit Key", + "Battery", + "Tape Player", + "Cassette Tape", + "Locker Room Key", + "Hospital ID Card", + "Vaccine Sample", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube", + "Vaccine" + ] + }, + "item_object": "sm49_501_ES_G19", + "parent_object": "", + "folder_path": "RopewayContents/World/Location_Laboratory/Environments/st05_0501_0/gimmick", + "id": null, + "victory": true + } ] \ No newline at end of file diff --git a/reframework/data/ArchipelagoRE3R/jill/a/locations_hardcore.json b/reframework/data/ArchipelagoRE3R/locations_hardcore.json similarity index 96% rename from reframework/data/ArchipelagoRE3R/jill/a/locations_hardcore.json rename to reframework/data/ArchipelagoRE3R/locations_hardcore.json index 8e0ae05..de66505 100644 --- a/reframework/data/ArchipelagoRE3R/jill/a/locations_hardcore.json +++ b/reframework/data/ArchipelagoRE3R/locations_hardcore.json @@ -1,26 +1,26 @@ -[ - { - "name": "Final Fight 10", - "region": "Weapons Testing Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_Hard", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Supply Cart", - "region": "Sickroom", - "remove": true - }, - { - "name": "Cart 7", - "region": "Operating Room", - "remove": true - }, - { - "name": "Cart 8", - "region": "Operating Room", - "remove": true - } -] +[ + { + "name": "Final Fight 10", + "region": "Weapons Testing Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_Hard", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Supply Cart", + "region": "Sickroom", + "remove": true + }, + { + "name": "Cart 7", + "region": "Operating Room", + "remove": true + }, + { + "name": "Cart 8", + "region": "Operating Room", + "remove": true + } +] diff --git a/reframework/data/ArchipelagoRE3R/jill/a/locations_inferno.json b/reframework/data/ArchipelagoRE3R/locations_inferno.json similarity index 96% rename from reframework/data/ArchipelagoRE3R/jill/a/locations_inferno.json rename to reframework/data/ArchipelagoRE3R/locations_inferno.json index a3c95f6..f518618 100644 --- a/reframework/data/ArchipelagoRE3R/jill/a/locations_inferno.json +++ b/reframework/data/ArchipelagoRE3R/locations_inferno.json @@ -1,630 +1,630 @@ -[ - { - "name": "By Ticket Gate 3", - "region": "Subway Station", - "original_item": "Hip Pouch", - "condition": {}, - "item_object": "sm74_200", - "parent_object": "sm74_200_SideBag", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/_Nightmare", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Ticket Gate 4", - "region": "Subway Station", - "original_item": "MAG", - "condition": {}, - "item_object": "WP3000", - "parent_object": "WP3000", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon/Nightmare", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Barrel in Alley", - "region": "South Avenue", - "original_item": "Flash Grenade", - "condition": {}, - "item_object": "WP6300", - "parent_object": "wp6300", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/_Nightmare" - }, - { - "name": "Inside Cop Car", - "region": "Main Avenue", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_hgshell", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area" - }, - { - "name": "Counter", - "region": "Toy Shop", - "original_item": "MAG Ammo", - "condition": {}, - "item_object": "sm70_103", - "parent_object": "sm70_103", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area/Nightmare" - }, - { - "name": "Box By Donut Shop", - "region": "Shopping Plaza", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/Nightmare" - }, - { - "name": "On Cart", - "region": "Pharmacy", - "original_item": "Green Jewel", - "condition": {}, - "item_object": "sm73_311", - "parent_object": "sm73_311", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare" - }, - { - "name": "Downed Zombie By Entrance", - "region": "Subway Office", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "WP6200", - "parent_object": "wp6200", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" - }, - { - "name": "Right Locker", - "region": "Subway Office", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_205_gunp_In_Locker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" - }, - { - "name": "On Barrel 2", - "region": "Side Alley", - "original_item": "Blue Jewel", - "condition": {}, - "item_object": "sm73_312", - "parent_object": "sm73_312", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare" - }, - { - "name": "Power Panel By Scaffolding", - "region": "Power Maze", - "original_item": "Red Jewel", - "condition": {}, - "item_object": "sm73_313", - "parent_object": "sm73_313", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table 3", - "region": "Security Room", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/Nightmare", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Display Case", - "region": "Gun Shop", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/Inferno", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Near Door On Box", - "region": "Guard Room", - "original_item": "ID Card", - "condition": {}, - "item_object": "sm73_203", - "parent_object": "sm73_203", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common/NIGHTMARE", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "ID Case", - "region": "RPD Reception", - "original_item": "Scope - Assault Rifle", - "condition": { - "items": [ - "ID Card" - ] - }, - "item_object": "sm71_200", - "parent_object": "ItemPositions_sm41_410", - "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0202_0/gimmick_Escape", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "ID Case", - "region": "West Office", - "original_item": "Assault Rifle Ammo", - "condition": { - "items": [ - "ID Card" - ] - }, - "item_object": "sm70_102", - "parent_object": "ItemPositions_sm41_410", - "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0202_0/gimmick_Escape", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table", - "region": "Operations Room 2", - "original_item": "Green Herb", - "condition": {}, - "item_object": "sm70_001", - "parent_object": "sm70_001_onlyUnlimited", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Desk 1", - "region": "Darkroom", - "original_item": "Assault Rifle Ammo", - "condition": {}, - "item_object": "sm70_102", - "parent_object": "sm70_102_onlyUnlimited", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Desk 2", - "region": "Darkroom", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_onlyUnlimited", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Attache Case", - "region": "Courtyard", - "original_item": "MAG Ammo", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_103", - "parent_object": "Attache_MagnumBullet", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Truck", - "region": "Loading Bay", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "st04_0302_sm70_205_01", - "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0302", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table", - "region": "Laboratory Storage", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_onlyUnlimited", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/01_LockerRoom" - }, - { - "name": "By Corpse", - "region": "Experiment Room", - "original_item": "Gunpowder", - "condition": {}, - "item_object": "sm70_205", - "parent_object": "sm70_205_onlyUnlimited", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Case Near Servers", - "region": "Server Room 2F", - "original_item": "Explosive B", - "condition": {}, - "item_object": "sm70_208", - "parent_object": "sm70_208_onlyUnlimited", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Attache Case", - "region": "Bioweapon Incubation Room", - "original_item": "Explosive A", - "condition": {}, - "item_object": "sm70_207", - "parent_object": "sm70_208_Acase", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "On Cart", - "region": "Walkway", - "original_item": "Red Herb", - "condition": {}, - "item_object": "sm70_002", - "parent_object": "sm70_002_onlyUnlimited", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "By Case", - "region": "Incubation Lab", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206_onlyUnlimited", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" - }, - { - "name": "Final Fight 10", - "region": "Weapons Testing Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_SHard", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Counter By Door", - "region": "Supermarket", - "remove": true - }, - { - "name": "Inside Kitchen 2", - "region": "Donut Shop", - "remove": true - }, - { - "name": "Control Room", - "region": "Substation", - "remove": true - }, - { - "name": "In Display Case", - "region": "Gun Shop", - "remove": true - }, - { - "name": "On Weapon Crate", - "region": "Gun Shop", - "remove": true - }, - { - "name": "On Shelf 3", - "region": "Gun Shop", - "remove": true - }, - { - "name": "Zombie", - "region": "Small Alley", - "remove": true - }, - { - "name": "Brad's Corpse", - "region": "RPD Entrance", - "remove": true - }, - { - "name": "Near Breakable Box", - "region": "East Courtyard", - "remove": true - }, - { - "name": "Waiting Room Barricade", - "region": "Main Lobby", - "remove": true - }, - { - "name": "Cabinet Near Reception Window", - "region": "West Office", - "remove": true - }, - { - "name": "Desk Near Safe", - "region": "West Office", - "remove": true - }, - { - "name": "Reception Window", - "region": "West Office", - "remove": true - }, - { - "name": "On Cabinet", - "region": "Safety Deposit Room", - "remove": true - }, - { - "name": "First Aid Kit", - "region": "STARS Office", - "remove": true - }, - { - "name": "By Doors", - "region": "Makeshift Sickroom", - "remove": true - }, - { - "name": "Admissions Desk 2", - "region": "Hospital Lobby", - "remove": true - }, - { - "name": "Reception Desk", - "region": "Hospital Reception", - "remove": true - }, - { - "name": "By Couch", - "region": "Laboratory Reception", - "remove": true - }, - { - "name": "Gurney", - "region": "Main Corridor 2F", - "remove": true - }, - { - "name": "Table", - "region": "Staff Room", - "remove": true - }, - { - "name": "Supply Cart", - "region": "Sickroom", - "remove": true - }, - { - "name": "Cart 7", - "region": "Operating Room", - "remove": true - }, - { - "name": "Cart 8", - "region": "Operating Room", - "remove": true - }, - { - "name": "Desk 2", - "region": "Research Laboratory", - "remove": true - }, - { - "name": "Desk 3", - "region": "Research Laboratory", - "remove": true - }, - { - "name": "Forklift", - "region": "Bioweapons Shipping", - "remove": true - }, - { - "name": "After Dead End", - "region": "Warehouse", - "remove": true - }, - { - "name": "In Container By Fuse 1", - "region": "Warehouse", - "remove": true - }, - { - "name": "In Container By Fuse 2", - "region": "Warehouse", - "remove": true - }, - { - "name": "In Container By Fuse 3", - "region": "Warehouse", - "remove": true - }, - { - "name": "In Container By Fuse 4", - "region": "Warehouse", - "remove": true - }, - { - "name": "On Box 2", - "region": "Experiment Storage", - "remove": true - }, - { - "name": "On Floor", - "region": "Server Room 2F", - "remove": true - }, - { - "name": "On Cart 2", - "region": "Lab 1", - "remove": true - } +[ + { + "name": "By Ticket Gate 3", + "region": "Subway Station", + "original_item": "Hip Pouch", + "condition": {}, + "item_object": "sm74_200", + "parent_object": "sm74_200_SideBag", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/_Nightmare", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Ticket Gate 4", + "region": "Subway Station", + "original_item": "MAG", + "condition": {}, + "item_object": "WP3000", + "parent_object": "WP3000", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon/Nightmare", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Barrel in Alley", + "region": "South Avenue", + "original_item": "Flash Grenade", + "condition": {}, + "item_object": "WP6300", + "parent_object": "wp6300", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/_Nightmare" + }, + { + "name": "Inside Cop Car", + "region": "Main Avenue", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_hgshell", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area" + }, + { + "name": "Counter", + "region": "Toy Shop", + "original_item": "MAG Ammo", + "condition": {}, + "item_object": "sm70_103", + "parent_object": "sm70_103", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area/Nightmare" + }, + { + "name": "Box By Donut Shop", + "region": "Shopping Plaza", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/Nightmare" + }, + { + "name": "On Cart", + "region": "Pharmacy", + "original_item": "Green Jewel", + "condition": {}, + "item_object": "sm73_311", + "parent_object": "sm73_311", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare" + }, + { + "name": "Downed Zombie By Entrance", + "region": "Subway Office", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "WP6200", + "parent_object": "wp6200", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" + }, + { + "name": "Right Locker", + "region": "Subway Office", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_205_gunp_In_Locker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" + }, + { + "name": "On Barrel 2", + "region": "Side Alley", + "original_item": "Blue Jewel", + "condition": {}, + "item_object": "sm73_312", + "parent_object": "sm73_312", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare" + }, + { + "name": "Power Panel By Scaffolding", + "region": "Power Maze", + "original_item": "Red Jewel", + "condition": {}, + "item_object": "sm73_313", + "parent_object": "sm73_313", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table 3", + "region": "Security Room", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/Nightmare", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Display Case", + "region": "Gun Shop", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_1100_Kendo_Area/Inferno", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Near Door On Box", + "region": "Guard Room", + "original_item": "ID Card", + "condition": {}, + "item_object": "sm73_203", + "parent_object": "sm73_203", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common/NIGHTMARE", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "ID Case", + "region": "RPD Reception", + "original_item": "Scope - Assault Rifle", + "condition": { + "items": [ + "ID Card" + ] + }, + "item_object": "sm71_200", + "parent_object": "ItemPositions_sm41_410", + "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0202_0/gimmick_Escape", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "ID Case", + "region": "West Office", + "original_item": "Assault Rifle Ammo", + "condition": { + "items": [ + "ID Card" + ] + }, + "item_object": "sm70_102", + "parent_object": "ItemPositions_sm41_410", + "folder_path": "RopewayContents/World/Location_RPD/Environments/st02_0202_0/gimmick_Escape", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table", + "region": "Operations Room 2", + "original_item": "Green Herb", + "condition": {}, + "item_object": "sm70_001", + "parent_object": "sm70_001_onlyUnlimited", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Desk 1", + "region": "Darkroom", + "original_item": "Assault Rifle Ammo", + "condition": {}, + "item_object": "sm70_102", + "parent_object": "sm70_102_onlyUnlimited", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Desk 2", + "region": "Darkroom", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_onlyUnlimited", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Attache Case", + "region": "Courtyard", + "original_item": "MAG Ammo", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_103", + "parent_object": "Attache_MagnumBullet", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Truck", + "region": "Loading Bay", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "st04_0302_sm70_205_01", + "folder_path": "RopewayContents/World/Location_Hospital2/LocationLevel_Hospital2/Item/common/ES_common/st04_0302", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table", + "region": "Laboratory Storage", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_onlyUnlimited", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/01_LockerRoom" + }, + { + "name": "By Corpse", + "region": "Experiment Room", + "original_item": "Gunpowder", + "condition": {}, + "item_object": "sm70_205", + "parent_object": "sm70_205_onlyUnlimited", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Case Near Servers", + "region": "Server Room 2F", + "original_item": "Explosive B", + "condition": {}, + "item_object": "sm70_208", + "parent_object": "sm70_208_onlyUnlimited", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Attache Case", + "region": "Bioweapon Incubation Room", + "original_item": "Explosive A", + "condition": {}, + "item_object": "sm70_207", + "parent_object": "sm70_208_Acase", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "On Cart", + "region": "Walkway", + "original_item": "Red Herb", + "condition": {}, + "item_object": "sm70_002", + "parent_object": "sm70_002_onlyUnlimited", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "By Case", + "region": "Incubation Lab", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206_onlyUnlimited", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/02_Laboratory" + }, + { + "name": "Final Fight 10", + "region": "Weapons Testing Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_SHard", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Counter By Door", + "region": "Supermarket", + "remove": true + }, + { + "name": "Inside Kitchen 2", + "region": "Donut Shop", + "remove": true + }, + { + "name": "Control Room", + "region": "Substation", + "remove": true + }, + { + "name": "In Display Case", + "region": "Gun Shop", + "remove": true + }, + { + "name": "On Weapon Crate", + "region": "Gun Shop", + "remove": true + }, + { + "name": "On Shelf 3", + "region": "Gun Shop", + "remove": true + }, + { + "name": "Zombie", + "region": "Small Alley", + "remove": true + }, + { + "name": "Brad's Corpse", + "region": "RPD Entrance", + "remove": true + }, + { + "name": "Near Breakable Box", + "region": "East Courtyard", + "remove": true + }, + { + "name": "Waiting Room Barricade", + "region": "Main Lobby", + "remove": true + }, + { + "name": "Cabinet Near Reception Window", + "region": "West Office", + "remove": true + }, + { + "name": "Desk Near Safe", + "region": "West Office", + "remove": true + }, + { + "name": "Reception Window", + "region": "West Office", + "remove": true + }, + { + "name": "On Cabinet", + "region": "Safety Deposit Room", + "remove": true + }, + { + "name": "First Aid Kit", + "region": "STARS Office", + "remove": true + }, + { + "name": "By Doors", + "region": "Makeshift Sickroom", + "remove": true + }, + { + "name": "Admissions Desk 2", + "region": "Hospital Lobby", + "remove": true + }, + { + "name": "Reception Desk", + "region": "Hospital Reception", + "remove": true + }, + { + "name": "By Couch", + "region": "Laboratory Reception", + "remove": true + }, + { + "name": "Gurney", + "region": "Main Corridor 2F", + "remove": true + }, + { + "name": "Table", + "region": "Staff Room", + "remove": true + }, + { + "name": "Supply Cart", + "region": "Sickroom", + "remove": true + }, + { + "name": "Cart 7", + "region": "Operating Room", + "remove": true + }, + { + "name": "Cart 8", + "region": "Operating Room", + "remove": true + }, + { + "name": "Desk 2", + "region": "Research Laboratory", + "remove": true + }, + { + "name": "Desk 3", + "region": "Research Laboratory", + "remove": true + }, + { + "name": "Forklift", + "region": "Bioweapons Shipping", + "remove": true + }, + { + "name": "After Dead End", + "region": "Warehouse", + "remove": true + }, + { + "name": "In Container By Fuse 1", + "region": "Warehouse", + "remove": true + }, + { + "name": "In Container By Fuse 2", + "region": "Warehouse", + "remove": true + }, + { + "name": "In Container By Fuse 3", + "region": "Warehouse", + "remove": true + }, + { + "name": "In Container By Fuse 4", + "region": "Warehouse", + "remove": true + }, + { + "name": "On Box 2", + "region": "Experiment Storage", + "remove": true + }, + { + "name": "On Floor", + "region": "Server Room 2F", + "remove": true + }, + { + "name": "On Cart 2", + "region": "Lab 1", + "remove": true + } ] \ No newline at end of file diff --git a/reframework/data/ArchipelagoRE3R/jill/a/locations_nightmare.json b/reframework/data/ArchipelagoRE3R/locations_nightmare.json similarity index 97% rename from reframework/data/ArchipelagoRE3R/jill/a/locations_nightmare.json rename to reframework/data/ArchipelagoRE3R/locations_nightmare.json index a115da0..a7e34aa 100644 --- a/reframework/data/ArchipelagoRE3R/jill/a/locations_nightmare.json +++ b/reframework/data/ArchipelagoRE3R/locations_nightmare.json @@ -1,270 +1,270 @@ -[ - { - "name": "By Ticket Gate 3", - "region": "Subway Station", - "original_item": "Hip Pouch", - "condition": {}, - "item_object": "sm74_200", - "parent_object": "sm74_200_SideBag", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/_Nightmare", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "By Ticket Gate 4", - "region": "Subway Station", - "original_item": "MAG", - "condition": {}, - "item_object": "WP3000", - "parent_object": "WP3000", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon/Nightmare", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Fire Hose", - "Lock Pick", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "On Barrel in Alley", - "region": "South Avenue", - "original_item": "Flash Grenade", - "condition": {}, - "item_object": "WP6300", - "parent_object": "wp6300", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/_Nightmare" - }, - { - "name": "Inside Cop Car", - "region": "Main Avenue", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_hgshell", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area" - }, - { - "name": "Counter", - "region": "Toy Shop", - "original_item": "MAG Ammo", - "condition": {}, - "item_object": "sm70_103", - "parent_object": "sm70_103", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area/Nightmare" - }, - { - "name": "Box By Donut Shop", - "region": "Shopping Plaza", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/Nightmare" - }, - { - "name": "On Cart", - "region": "Pharmacy", - "original_item": "Green Jewel", - "condition": {}, - "item_object": "sm73_311", - "parent_object": "sm73_311", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare" - }, - { - "name": "Downed Zombie By Entrance", - "region": "Subway Office", - "original_item": "Hand Grenade", - "condition": {}, - "item_object": "WP6200", - "parent_object": "wp6200", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" - }, - { - "name": "Right Locker", - "region": "Subway Office", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_205_gunp_In_Locker", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" - }, - { - "name": "On Barrel 2", - "region": "Side Alley", - "original_item": "Blue Jewel", - "condition": {}, - "item_object": "sm73_312", - "parent_object": "sm73_312", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare" - }, - { - "name": "Power Panel By Scaffolding", - "region": "Power Maze", - "original_item": "Red Jewel", - "condition": {}, - "item_object": "sm73_313", - "parent_object": "sm73_313", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Battery Pack", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Table 3", - "region": "Security Room", - "original_item": "High-Grade Gunpowder", - "condition": {}, - "item_object": "sm70_206", - "parent_object": "sm70_206", - "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/Nightmare", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "Kendo Gate Key", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Near Door On Box", - "region": "Guard Room", - "original_item": "ID Card", - "condition": {}, - "item_object": "sm73_203", - "parent_object": "sm73_203", - "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common/NIGHTMARE", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Locker Room Key", - "Tape Player", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Attache Case", - "region": "Courtyard", - "original_item": "MAG Ammo", - "condition": { - "items": [ - "Lock Pick", - "Vaccine Sample" - ] - }, - "item_object": "sm70_103", - "parent_object": "Attache_MagnumBullet", - "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", - "allow_item": [ - "Red Jewel", - "Blue Jewel", - "Green Jewel", - "ID Card", - "Fuse 1", - "Fuse 2", - "Fuse 3", - "Override Key", - "Culture Sample", - "Liquid-Filled Test Tube" - ] - }, - { - "name": "Final Fight 10", - "region": "Weapons Testing Area", - "original_item": "Handgun Ammo", - "condition": {}, - "item_object": "sm70_100", - "parent_object": "sm70_100_SHard", - "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" - }, - { - "name": "Counter By Door", - "region": "Supermarket", - "remove": true - }, - { - "name": "Inside Kitchen 2", - "region": "Donut Shop", - "remove": true - }, - { - "name": "Control Room", - "region": "Substation", - "remove": true - }, - { - "name": "Brad's Corpse", - "region": "RPD Entrance", - "remove": true - }, - { - "name": "Supply Cart", - "region": "Sickroom", - "remove": true - }, - { - "name": "Cart 7", - "region": "Operating Room", - "remove": true - }, - { - "name": "Cart 8", - "region": "Operating Room", - "remove": true - } +[ + { + "name": "By Ticket Gate 3", + "region": "Subway Station", + "original_item": "Hip Pouch", + "condition": {}, + "item_object": "sm74_200", + "parent_object": "sm74_200_SideBag", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/_Nightmare", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "By Ticket Gate 4", + "region": "Subway Station", + "original_item": "MAG", + "condition": {}, + "item_object": "WP3000", + "parent_object": "WP3000", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/Weapon/Nightmare", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Fire Hose", + "Lock Pick", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "On Barrel in Alley", + "region": "South Avenue", + "original_item": "Flash Grenade", + "condition": {}, + "item_object": "WP6300", + "parent_object": "wp6300", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_100_Subway_Area/_Nightmare" + }, + { + "name": "Inside Cop Car", + "region": "Main Avenue", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_hgshell", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area" + }, + { + "name": "Counter", + "region": "Toy Shop", + "original_item": "MAG Ammo", + "condition": {}, + "item_object": "sm70_103", + "parent_object": "sm70_103", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_200_T-Junction_Area/Nightmare" + }, + { + "name": "Box By Donut Shop", + "region": "Shopping Plaza", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_300_DounutShop_Area/Nightmare" + }, + { + "name": "On Cart", + "region": "Pharmacy", + "original_item": "Green Jewel", + "condition": {}, + "item_object": "sm73_311", + "parent_object": "sm73_311", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare" + }, + { + "name": "Downed Zombie By Entrance", + "region": "Subway Office", + "original_item": "Hand Grenade", + "condition": {}, + "item_object": "WP6200", + "parent_object": "wp6200", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" + }, + { + "name": "Right Locker", + "region": "Subway Office", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_205_gunp_In_Locker", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_600_ControlStation_Area/I_ControlRoom" + }, + { + "name": "On Barrel 2", + "region": "Side Alley", + "original_item": "Blue Jewel", + "condition": {}, + "item_object": "sm73_312", + "parent_object": "sm73_312", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare" + }, + { + "name": "Power Panel By Scaffolding", + "region": "Power Maze", + "original_item": "Red Jewel", + "condition": {}, + "item_object": "sm73_313", + "parent_object": "sm73_313", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/KeyItem/Nightmare", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Battery Pack", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Table 3", + "region": "Security Room", + "original_item": "High-Grade Gunpowder", + "condition": {}, + "item_object": "sm70_206", + "parent_object": "sm70_206", + "folder_path": "RopewayContents/World/Location_DownTown/LocationLevel_DownTown/LocationFsm_DownTown/S03_1000/ES_S03_1000/Item/ES_S03_1000/I_900_Sewer/Nightmare", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "Kendo Gate Key", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Near Door On Box", + "region": "Guard Room", + "original_item": "ID Card", + "condition": {}, + "item_object": "sm73_203", + "parent_object": "sm73_203", + "folder_path": "RopewayContents/World/Location_RPD/LocationLevel_RPD/Item/common/ES_common/NIGHTMARE", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Locker Room Key", + "Tape Player", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Attache Case", + "region": "Courtyard", + "original_item": "MAG Ammo", + "condition": { + "items": [ + "Lock Pick", + "Vaccine Sample" + ] + }, + "item_object": "sm70_103", + "parent_object": "Attache_MagnumBullet", + "folder_path": "RopewayContents/World/Location_Hospital/LocationLevel_Hospital/Item/common/LockerItem", + "allow_item": [ + "Red Jewel", + "Blue Jewel", + "Green Jewel", + "ID Card", + "Fuse 1", + "Fuse 2", + "Fuse 3", + "Override Key", + "Culture Sample", + "Liquid-Filled Test Tube" + ] + }, + { + "name": "Final Fight 10", + "region": "Weapons Testing Area", + "original_item": "Handgun Ammo", + "condition": {}, + "item_object": "sm70_100", + "parent_object": "sm70_100_SHard", + "folder_path": "RopewayContents/World/Location_Laboratory/LocationLevel_Laboratory/Item/common/ES_Common/04_Room02" + }, + { + "name": "Counter By Door", + "region": "Supermarket", + "remove": true + }, + { + "name": "Inside Kitchen 2", + "region": "Donut Shop", + "remove": true + }, + { + "name": "Control Room", + "region": "Substation", + "remove": true + }, + { + "name": "Brad's Corpse", + "region": "RPD Entrance", + "remove": true + }, + { + "name": "Supply Cart", + "region": "Sickroom", + "remove": true + }, + { + "name": "Cart 7", + "region": "Operating Room", + "remove": true + }, + { + "name": "Cart 8", + "region": "Operating Room", + "remove": true + } ] \ No newline at end of file diff --git a/reframework/data/ArchipelagoRE3R/jill/a/region_connections.json b/reframework/data/ArchipelagoRE3R/region_connections.json similarity index 95% rename from reframework/data/ArchipelagoRE3R/jill/a/region_connections.json rename to reframework/data/ArchipelagoRE3R/region_connections.json index f9fb6f2..179df1d 100644 --- a/reframework/data/ArchipelagoRE3R/jill/a/region_connections.json +++ b/reframework/data/ArchipelagoRE3R/region_connections.json @@ -1,628 +1,628 @@ -[ - { - "from": "Menu", - "to": "Subway Station", - "condition": {} - }, - { - "from": "Subway Station", - "to": "South Avenue", - "condition": {} - }, - { - "from": "South Avenue", - "to": "Main Avenue", - "condition": {} - }, - { - "from": "Main Avenue", - "to": "Toy Shop", - "condition": { - "items": ["Lock Pick"] - } - }, - { - "from": "Main Avenue", - "to": "Supermarket", - "condition": { - "items": ["Bolt Cutters"] - } - }, - { - "from": "Main Avenue", - "to": "Shopping Plaza", - "condition": {} - }, - { - "from": "Shopping Plaza", - "to": "Building Rooftop", - "condition": {} - }, - { - "from": "Building Rooftop", - "to": "Main Avenue", - "limitation": "ONE_SIDED_DOOR" - }, - { - "from": "Shopping Plaza", - "to": "Donut Shop", - "condition": {} - }, - { - "from": "Donut Shop", - "to": "Business Street", - "condition": {} - }, - { - "from": "Shopping Plaza", - "to": "Drugstore Storage", - "condition": {} - }, - { - "from": "Drugstore Storage", - "to": "Business Street", - "condition": {} - }, - { - "from": "Business Street", - "to": "Pharmacy", - "condition": {} - }, - { - "from": "Business Street", - "to": "Subway Office", - "condition": {} - }, - { - "from": "Business Street", - "to": "Side Alley", - "condition": { - "items": ["Bolt Cutters"] - } - }, - { - "from": "Main Avenue", - "to": "Garage Entry", - "condition": {} - }, - { - "from": "Garage Entry", - "to": "Tool Shop", - "condition": { - "items": ["Fire Hose"] - } - }, - { - "from": "Tool Shop", - "to": "Garage", - "condition": { - "items": ["Bolt Cutters"] - } - }, - { - "from": "Garage", - "to": "Back Alley", - "condition": {} - }, - { - "from": "Back Alley", - "to": "Substation Street", - "condition": {} - }, - { - "from": "Substation Street", - "to": "Substation", - "condition": {} - }, - { - "from": "Substation", - "to": "Outdoor Area", - "condition": {} - }, - { - "from": "Outdoor Area", - "to": "Power Maze", - "condition": { - "items": ["Lock Pick"] - } - }, - { - "from": "Power Maze", - "to": "Nemesis Chase", - "condition": { - "items": ["Lock Pick", "Bolt Cutters", "Fire Hose"] - } - }, - { - "from": "Nemesis Chase", - "to": "Sewer Entrance", - "condition": {} - }, - { - "from": "Sewer Entrance", - "to": "Lower Waterway", - "condition": {} - }, - { - "from": "Lower Waterway", - "to": "Manager's Office", - "condition": {} - }, - { - "from": "Lower Waterway", - "to": "Overpass", - "condition": {} - }, - { - "from": "Overpass", - "to": "East Tunnel", - "condition": {} - }, - { - "from": "East Tunnel", - "to": "South Office", - "condition": {} - }, - { - "from": "East Tunnel", - "to": "West Tunnel", - "condition": {} - }, - { - "from": "West Tunnel", - "to": "Northwest Tunnel", - "condition": {} - }, - { - "from": "West Tunnel", - "to": "Sewer Laboratory", - "condition": {} - }, - { - "from": "East Tunnel", - "to": "Circular Stairs", - "condition": {} - }, - { - "from": "Circular Stairs", - "to": "Upper Access", - "condition": { - "items": ["Battery Pack"] - } - }, - { - "from": "Upper Access", - "to": "Circular Stairs", - "limitation": "ONE_SIDED_DOOR" - }, - { - "from": "Upper Access", - "to": "Security Room", - "condition": { - "items": ["Battery Pack"] - } - }, - { - "from": "Upper Access", - "to": "Overpass", - "limitation": "ONE_SIDED_DOOR" - }, - { - "from": "Overpass", - "to": "Exit Tunnel", - "condition": { - "items": ["Battery Pack"] - } - }, - { - "from": "Exit Tunnel", - "to": "Demolition Site 1st Floor", - "condition": {} - }, - { - "from": "Demolition Site 1st Floor", - "to": "Demolition Site Storage", - "condition": {} - }, - { - "from": "Demolition Site 1st Floor", - "to": "Demolition Site Roof", - "condition": {} - }, - { - "from": "Demolition Site Roof", - "to": "Industry Street", - "condition": {} - }, - { - "from": "Industry Street", - "to": "Outside Gun Shop", - "condition": {} - }, - { - "from": "Outside Gun Shop", - "to": "Gun Shop", - "condition": {} - }, - { - "from": "Outside Gun Shop", - "to": "Small Alley", - "condition": { - "items": ["Lock Pick", "Bolt Cutters", "Fire Hose", "Battery Pack", "Kendo Gate Key"] - } - }, - { - "from": "Small Alley", - "to": "House", - "condition": {} - }, - { - "from": "House", - "to": "Scaffolding", - "condition": {} - }, - { - "from": "Scaffolding", - "to": "Subway Station", - "limitation": "ONE_SIDED_DOOR" - }, - { - "from": "Subway Station", - "to": "West Courtyard", - "condition": { - "items": ["Lock Pick", "Bolt Cutters", "Fire Hose", "Battery Pack", "Kendo Gate Key"] - } - }, - { - "from": "West Courtyard", - "to": "Guard Room", - "condition": {} - }, - { - "from": "West Courtyard", - "to": "East Courtyard", - "condition": {} - }, - { - "from": "West Courtyard", - "to": "RPD Entrance", - "condition": {} - }, - { - "from": "RPD Entrance", - "to": "Main Lobby", - "condition": {} - }, - { - "from": "Main Lobby", - "to": "RPD Reception", - "condition": {} - }, - { - "from": "RPD Reception", - "to": "Operations Room", - "condition": {} - }, - { - "from": "Operations Room", - "to": "Operations Room 2", - "condition": {} - }, - { - "from": "Operations Room 2", - "to": "West Hallway 1F", - "condition": {} - }, - { - "from": "West Hallway 1F", - "to": "Safety Deposit Room", - "condition": { - "items": ["Safety Deposit Key"] - } - }, - { - "from": "West Hallway 1F", - "to": "West Office", - "condition": {} - }, - { - "from": "West Hallway 1F", - "to": "Darkroom", - "condition": {} - }, - { - "from": "West Hallway 1F", - "to": "West Hallway 3F", - "condition": {} - }, - { - "from": "West Hallway 1F", - "to": "Shower Room", - "condition": {} - }, - { - "from": "Shower Room", - "to": "West Hallway 2F", - "condition": { - "items": ["Safety Deposit Key", "Battery"] - } - }, - { - "from": "West Hallway 2F", - "to": "STARS Office", - "condition": {} - }, - { - "from": "STARS Office", - "to": "Subway Tunnels", - "condition": {} - }, - { - "from": "Subway Tunnels", - "to": "Dilapidated Shelter", - "condition": {} - }, - { - "from": "Subway Tunnels", - "to": "Dilapidated Shelter", - "condition": {} - }, - { - "from": "Dilapidated Shelter", - "to": "Promenade", - "condition": {} - }, - { - "from": "Promenade", - "to": "Plaza", - "condition": {} - }, - { - "from": "Plaza", - "to": "Makeshift Sickroom", - "condition": {} - }, - { - "from": "Makeshift Sickroom", - "to": "Hospital Lobby", - "condition": {} - }, - { - "from": "Hospital Lobby", - "to": "Back Office", - "condition": { - "items": ["Vaccine Sample"] - } - }, - { - "from": "Hospital Lobby", - "to": "Hospital Reception", - "condition": {} - }, - { - "from": "Hospital Reception", - "to": "Main Corridor", - "condition": {} - }, - { - "from": "Main Corridor", - "to": "Laboratory Reception", - "condition": {} - }, - { - "from": "Laboratory Reception", - "to": "Emergency Entrance", - "condition": {} - }, - { - "from": "Emergency Entrance", - "to": "Operating Room", - "condition": { - "items": ["Hospital ID Card"] - } - }, - { - "from": "Main Corridor", - "to": "Main Corridor 2F", - "condition": {} - }, - { - "from": "Main Corridor 2F", - "to": "Courtyard", - "condition": {} - }, - { - "from": "Courtyard", - "to": "Main Corridor", - "limitation": "ONE_SIDED_DOOR" - }, - { - "from": "Main Corridor 2F", - "to": "Records Room", - "condition": {} - }, - { - "from": "Main Corridor 2F", - "to": "Staff Room", - "condition": {} - }, - { - "from": "Staff Room", - "to": "Locker Room", - "condition": { - "items": ["Locker Room Key"] - } - }, - { - "from": "Main Corridor 2F", - "to": "Nurse Station", - "condition": {} - }, - { - "from": "Nurse Station", - "to": "Linen Room", - "condition": { - "items": ["Hospital ID Card"] - } - }, - { - "from": "Nurse Station", - "to": "Sickroom", - "condition": {} - }, - { - "from": "Linen Room", - "to": "Main Corridor 2F", - "limitation": "ONE_SIDED_DOOR" - }, - { - "from": "Linen Room", - "to": "Treatment Room", - "condition": {} - }, - { - "from": "Laboratory Reception", - "to": "Research Laboratory", - "condition": { - "items": ["Tape Player", "Cassette Tape", "Hospital ID Card", "Locker Room Key"] - } - }, - { - "from": "Research Laboratory", - "to": "Sample Room", - "condition": {} - }, - { - "from": "Hospital Reception", - "to": "Generator Room", - "condition": { - "items": ["Vaccine Sample", "Lock Pick"] - } - }, - { - "from": "Generator Room", - "to": "Loading Bay", - "condition": {} - }, - { - "from": "Loading Bay", - "to": "Bioweapons Shipping", - "condition": {} - }, - { - "from": "Bioweapons Shipping", - "to": "Shipping Office", - "condition": {} - }, - { - "from": "Shipping Office", - "to": "Warehouse", - "condition": {} - }, - { - "from": "Warehouse", - "to": "Small Storage Room", - "condition": {} - }, - { - "from": "Small Storage Room", - "to": "Shipping Office", - "limitation": "ONE_SIDED_DOOR" - }, - { - "from": "Warehouse", - "to": "Surveillance Room", - "condition": { - "items": ["Fuse 1", "Fuse 2", "Fuse 3"] - } - }, - { - "from": "Surveillance Room", - "to": "Laboratory Hallway", - "condition": {} - }, - { - "from": "Laboratory Hallway", - "to": "Laboratory Storage", - "condition": {} - }, - { - "from": "Laboratory Hallway", - "to": "Laboratory Hallway 2F", - "condition": {} - }, - { - "from": "Laboratory Hallway 2F", - "to": "Experiment Room", - "condition": {} - }, - { - "from": "Laboratory Hallway", - "to": "Experiment Storage", - "condition": { - "items": ["Override Key"] - } - }, - { - "from": "Experiment Storage", - "to": "Server Room 2F", - "condition": {} - }, - { - "from": "Server Room 2F", - "to": "Server Room", - "condition": {} - }, - { - "from": "Server Room", - "to": "Bioweapon Incubation Room", - "condition": {} - }, - { - "from": "Bioweapon Incubation Room", - "to": "Walkway", - "condition": {} - }, - { - "from": "Walkway", - "to": "Incubation Lab", - "condition": {} - }, - { - "from": "Experiment Storage", - "to": "Lab 1", - "condition": {} - }, - { - "from": "Experiment Room", - "to": "Worker's Break Room", - "condition": { - "items": ["Liquid-Filled Test Tube", "Culture Sample", "Vaccine"] - } - }, - { - "from": "Worker's Break Room", - "to": "Disposable Chamber Walkway", - "condition": {} - }, - { - "from": "Disposable Chamber Walkway", - "to": "Disposable Chamber", - "condition": {} - }, - { - "from": "Disposable Chamber", - "to": "Staff Break Room", - "condition": {} - }, - { - "from": "Staff Break Room", - "to": "Weapons Testing Area", - "condition": {} - }, - { - "from": "Weapons Testing Area", - "to": "Helipad", - "condition": {} - } -] +[ + { + "from": "Menu", + "to": "Subway Station", + "condition": {} + }, + { + "from": "Subway Station", + "to": "South Avenue", + "condition": {} + }, + { + "from": "South Avenue", + "to": "Main Avenue", + "condition": {} + }, + { + "from": "Main Avenue", + "to": "Toy Shop", + "condition": { + "items": ["Lock Pick"] + } + }, + { + "from": "Main Avenue", + "to": "Supermarket", + "condition": { + "items": ["Bolt Cutters"] + } + }, + { + "from": "Main Avenue", + "to": "Shopping Plaza", + "condition": {} + }, + { + "from": "Shopping Plaza", + "to": "Building Rooftop", + "condition": {} + }, + { + "from": "Building Rooftop", + "to": "Main Avenue", + "limitation": "ONE_SIDED_DOOR" + }, + { + "from": "Shopping Plaza", + "to": "Donut Shop", + "condition": {} + }, + { + "from": "Donut Shop", + "to": "Business Street", + "condition": {} + }, + { + "from": "Shopping Plaza", + "to": "Drugstore Storage", + "condition": {} + }, + { + "from": "Drugstore Storage", + "to": "Business Street", + "condition": {} + }, + { + "from": "Business Street", + "to": "Pharmacy", + "condition": {} + }, + { + "from": "Business Street", + "to": "Subway Office", + "condition": {} + }, + { + "from": "Business Street", + "to": "Side Alley", + "condition": { + "items": ["Bolt Cutters"] + } + }, + { + "from": "Main Avenue", + "to": "Garage Entry", + "condition": {} + }, + { + "from": "Garage Entry", + "to": "Tool Shop", + "condition": { + "items": ["Fire Hose"] + } + }, + { + "from": "Tool Shop", + "to": "Garage", + "condition": { + "items": ["Bolt Cutters"] + } + }, + { + "from": "Garage", + "to": "Back Alley", + "condition": {} + }, + { + "from": "Back Alley", + "to": "Substation Street", + "condition": {} + }, + { + "from": "Substation Street", + "to": "Substation", + "condition": {} + }, + { + "from": "Substation", + "to": "Outdoor Area", + "condition": {} + }, + { + "from": "Outdoor Area", + "to": "Power Maze", + "condition": { + "items": ["Lock Pick"] + } + }, + { + "from": "Power Maze", + "to": "Nemesis Chase", + "condition": { + "items": ["Lock Pick", "Bolt Cutters", "Fire Hose"] + } + }, + { + "from": "Nemesis Chase", + "to": "Sewer Entrance", + "condition": {} + }, + { + "from": "Sewer Entrance", + "to": "Lower Waterway", + "condition": {} + }, + { + "from": "Lower Waterway", + "to": "Manager's Office", + "condition": {} + }, + { + "from": "Lower Waterway", + "to": "Overpass", + "condition": {} + }, + { + "from": "Overpass", + "to": "East Tunnel", + "condition": {} + }, + { + "from": "East Tunnel", + "to": "South Office", + "condition": {} + }, + { + "from": "East Tunnel", + "to": "West Tunnel", + "condition": {} + }, + { + "from": "West Tunnel", + "to": "Northwest Tunnel", + "condition": {} + }, + { + "from": "West Tunnel", + "to": "Sewer Laboratory", + "condition": {} + }, + { + "from": "East Tunnel", + "to": "Circular Stairs", + "condition": {} + }, + { + "from": "Circular Stairs", + "to": "Upper Access", + "condition": { + "items": ["Battery Pack"] + } + }, + { + "from": "Upper Access", + "to": "Circular Stairs", + "limitation": "ONE_SIDED_DOOR" + }, + { + "from": "Upper Access", + "to": "Security Room", + "condition": { + "items": ["Battery Pack"] + } + }, + { + "from": "Upper Access", + "to": "Overpass", + "limitation": "ONE_SIDED_DOOR" + }, + { + "from": "Overpass", + "to": "Exit Tunnel", + "condition": { + "items": ["Battery Pack"] + } + }, + { + "from": "Exit Tunnel", + "to": "Demolition Site 1st Floor", + "condition": {} + }, + { + "from": "Demolition Site 1st Floor", + "to": "Demolition Site Storage", + "condition": {} + }, + { + "from": "Demolition Site 1st Floor", + "to": "Demolition Site Roof", + "condition": {} + }, + { + "from": "Demolition Site Roof", + "to": "Industry Street", + "condition": {} + }, + { + "from": "Industry Street", + "to": "Outside Gun Shop", + "condition": {} + }, + { + "from": "Outside Gun Shop", + "to": "Gun Shop", + "condition": {} + }, + { + "from": "Outside Gun Shop", + "to": "Small Alley", + "condition": { + "items": ["Lock Pick", "Bolt Cutters", "Fire Hose", "Battery Pack", "Kendo Gate Key"] + } + }, + { + "from": "Small Alley", + "to": "House", + "condition": {} + }, + { + "from": "House", + "to": "Scaffolding", + "condition": {} + }, + { + "from": "Scaffolding", + "to": "Subway Station", + "limitation": "ONE_SIDED_DOOR" + }, + { + "from": "Subway Station", + "to": "West Courtyard", + "condition": { + "items": ["Lock Pick", "Bolt Cutters", "Fire Hose", "Battery Pack", "Kendo Gate Key"] + } + }, + { + "from": "West Courtyard", + "to": "Guard Room", + "condition": {} + }, + { + "from": "West Courtyard", + "to": "East Courtyard", + "condition": {} + }, + { + "from": "West Courtyard", + "to": "RPD Entrance", + "condition": {} + }, + { + "from": "RPD Entrance", + "to": "Main Lobby", + "condition": {} + }, + { + "from": "Main Lobby", + "to": "RPD Reception", + "condition": {} + }, + { + "from": "RPD Reception", + "to": "Operations Room", + "condition": {} + }, + { + "from": "Operations Room", + "to": "Operations Room 2", + "condition": {} + }, + { + "from": "Operations Room 2", + "to": "West Hallway 1F", + "condition": {} + }, + { + "from": "West Hallway 1F", + "to": "Safety Deposit Room", + "condition": { + "items": ["Safety Deposit Key"] + } + }, + { + "from": "West Hallway 1F", + "to": "West Office", + "condition": {} + }, + { + "from": "West Hallway 1F", + "to": "Darkroom", + "condition": {} + }, + { + "from": "West Hallway 1F", + "to": "West Hallway 3F", + "condition": {} + }, + { + "from": "West Hallway 1F", + "to": "Shower Room", + "condition": {} + }, + { + "from": "Shower Room", + "to": "West Hallway 2F", + "condition": { + "items": ["Safety Deposit Key", "Battery"] + } + }, + { + "from": "West Hallway 2F", + "to": "STARS Office", + "condition": {} + }, + { + "from": "STARS Office", + "to": "Subway Tunnels", + "condition": {} + }, + { + "from": "Subway Tunnels", + "to": "Dilapidated Shelter", + "condition": {} + }, + { + "from": "Subway Tunnels", + "to": "Dilapidated Shelter", + "condition": {} + }, + { + "from": "Dilapidated Shelter", + "to": "Promenade", + "condition": {} + }, + { + "from": "Promenade", + "to": "Plaza", + "condition": {} + }, + { + "from": "Plaza", + "to": "Makeshift Sickroom", + "condition": {} + }, + { + "from": "Makeshift Sickroom", + "to": "Hospital Lobby", + "condition": {} + }, + { + "from": "Hospital Lobby", + "to": "Back Office", + "condition": { + "items": ["Vaccine Sample"] + } + }, + { + "from": "Hospital Lobby", + "to": "Hospital Reception", + "condition": {} + }, + { + "from": "Hospital Reception", + "to": "Main Corridor", + "condition": {} + }, + { + "from": "Main Corridor", + "to": "Laboratory Reception", + "condition": {} + }, + { + "from": "Laboratory Reception", + "to": "Emergency Entrance", + "condition": {} + }, + { + "from": "Emergency Entrance", + "to": "Operating Room", + "condition": { + "items": ["Hospital ID Card"] + } + }, + { + "from": "Main Corridor", + "to": "Main Corridor 2F", + "condition": {} + }, + { + "from": "Main Corridor 2F", + "to": "Courtyard", + "condition": {} + }, + { + "from": "Courtyard", + "to": "Main Corridor", + "limitation": "ONE_SIDED_DOOR" + }, + { + "from": "Main Corridor 2F", + "to": "Records Room", + "condition": {} + }, + { + "from": "Main Corridor 2F", + "to": "Staff Room", + "condition": {} + }, + { + "from": "Staff Room", + "to": "Locker Room", + "condition": { + "items": ["Locker Room Key"] + } + }, + { + "from": "Main Corridor 2F", + "to": "Nurse Station", + "condition": {} + }, + { + "from": "Nurse Station", + "to": "Linen Room", + "condition": { + "items": ["Hospital ID Card"] + } + }, + { + "from": "Nurse Station", + "to": "Sickroom", + "condition": {} + }, + { + "from": "Linen Room", + "to": "Main Corridor 2F", + "limitation": "ONE_SIDED_DOOR" + }, + { + "from": "Linen Room", + "to": "Treatment Room", + "condition": {} + }, + { + "from": "Laboratory Reception", + "to": "Research Laboratory", + "condition": { + "items": ["Tape Player", "Cassette Tape", "Hospital ID Card", "Locker Room Key"] + } + }, + { + "from": "Research Laboratory", + "to": "Sample Room", + "condition": {} + }, + { + "from": "Hospital Reception", + "to": "Generator Room", + "condition": { + "items": ["Vaccine Sample", "Lock Pick"] + } + }, + { + "from": "Generator Room", + "to": "Loading Bay", + "condition": {} + }, + { + "from": "Loading Bay", + "to": "Bioweapons Shipping", + "condition": {} + }, + { + "from": "Bioweapons Shipping", + "to": "Shipping Office", + "condition": {} + }, + { + "from": "Shipping Office", + "to": "Warehouse", + "condition": {} + }, + { + "from": "Warehouse", + "to": "Small Storage Room", + "condition": {} + }, + { + "from": "Small Storage Room", + "to": "Shipping Office", + "limitation": "ONE_SIDED_DOOR" + }, + { + "from": "Warehouse", + "to": "Surveillance Room", + "condition": { + "items": ["Fuse 1", "Fuse 2", "Fuse 3"] + } + }, + { + "from": "Surveillance Room", + "to": "Laboratory Hallway", + "condition": {} + }, + { + "from": "Laboratory Hallway", + "to": "Laboratory Storage", + "condition": {} + }, + { + "from": "Laboratory Hallway", + "to": "Laboratory Hallway 2F", + "condition": {} + }, + { + "from": "Laboratory Hallway 2F", + "to": "Experiment Room", + "condition": {} + }, + { + "from": "Laboratory Hallway", + "to": "Experiment Storage", + "condition": { + "items": ["Override Key"] + } + }, + { + "from": "Experiment Storage", + "to": "Server Room 2F", + "condition": {} + }, + { + "from": "Server Room 2F", + "to": "Server Room", + "condition": {} + }, + { + "from": "Server Room", + "to": "Bioweapon Incubation Room", + "condition": {} + }, + { + "from": "Bioweapon Incubation Room", + "to": "Walkway", + "condition": {} + }, + { + "from": "Walkway", + "to": "Incubation Lab", + "condition": {} + }, + { + "from": "Experiment Storage", + "to": "Lab 1", + "condition": {} + }, + { + "from": "Experiment Room", + "to": "Worker's Break Room", + "condition": { + "items": ["Liquid-Filled Test Tube", "Culture Sample", "Vaccine"] + } + }, + { + "from": "Worker's Break Room", + "to": "Disposable Chamber Walkway", + "condition": {} + }, + { + "from": "Disposable Chamber Walkway", + "to": "Disposable Chamber", + "condition": {} + }, + { + "from": "Disposable Chamber", + "to": "Staff Break Room", + "condition": {} + }, + { + "from": "Staff Break Room", + "to": "Weapons Testing Area", + "condition": {} + }, + { + "from": "Weapons Testing Area", + "to": "Helipad", + "condition": {} + } +] diff --git a/reframework/data/ArchipelagoRE3R/jill/a/regions.json b/reframework/data/ArchipelagoRE3R/regions.json similarity index 93% rename from reframework/data/ArchipelagoRE3R/jill/a/regions.json rename to reframework/data/ArchipelagoRE3R/regions.json index 60c15f4..8ac5bd7 100644 --- a/reframework/data/ArchipelagoRE3R/jill/a/regions.json +++ b/reframework/data/ArchipelagoRE3R/regions.json @@ -1,439 +1,439 @@ -[ - { - "name": "Menu", - "zone_id": 1 - }, - { - "name": "Subway Station", - "zone_id": 1 - }, - { - "name": "South Avenue", - "zone_id": 1 - }, - { - "name": "Main Avenue", - "zone_id": 1 - }, - { - "name": "Toy Shop", - "zone_id": 1 - }, - { - "name": "Supermarket", - "zone_id": 1 - }, - { - "name": "Shopping Plaza", - "zone_id": 1 - }, - { - "name": "Building Rooftop", - "zone_id": 1 - }, - { - "name": "Donut Shop", - "zone_id": 1 - }, - { - "name": "Drugstore Storage", - "zone_id": 1 - }, - { - "name": "Business Street", - "zone_id": 1 - }, - { - "name": "Pharmacy", - "zone_id": 1 - }, - { - "name": "Subway Office", - "zone_id": 1 - }, - { - "name": "Side Alley", - "zone_id": 1 - }, - { - "name": "Garage Entry", - "zone_id": 1 - }, - { - "name": "Tool Shop", - "zone_id": 1 - }, - { - "name": "Garage", - "zone_id": 1 - }, - { - "name": "Back Alley", - "zone_id": 1 - }, - { - "name": "Substation Street", - "zone_id": 1 - }, - { - "name": "Substation", - "zone_id": 1 - }, - { - "name": "Outdoor Area", - "zone_id": 1 - }, - { - "name": "Power Maze", - "zone_id": 1 - }, - { - "name": "Nemesis Chase", - "zone_id": 1 - }, - { - "name": "Demolition Site 1st Floor", - "zone_id": 1 - }, - { - "name": "Demolition Site Storage", - "zone_id": 1 - }, - { - "name": "Demolition Site Roof", - "zone_id": 1 - }, - { - "name": "Industry Street", - "zone_id": 1 - }, - { - "name": "Outside Gun Shop", - "zone_id": 1 - }, - { - "name": "Gun Shop", - "zone_id": 1 - }, - { - "name": "Small Alley", - "zone_id": 1 - }, - { - "name": "House", - "zone_id": 1 - }, - { - "name": "Scaffolding", - "zone_id": 1 - }, - - { - "name": "Sewer Entrance", - "zone_id": 2 - }, - { - "name": "Lower Waterway", - "zone_id": 2 - }, - { - "name": "Manager's Office", - "zone_id": 2 - }, - { - "name": "Overpass", - "zone_id": 2 - }, - { - "name": "East Tunnel", - "zone_id": 2 - }, - { - "name": "Circular Stairs", - "zone_id": 2 - }, - { - "name": "South Office", - "zone_id": 2 - }, - { - "name": "West Tunnel", - "zone_id": 2 - }, - { - "name": "Northwest Tunnel", - "zone_id": 2 - }, - { - "name": "Sewer Laboratory", - "zone_id": 2 - }, - { - "name": "Upper Access", - "zone_id": 2 - }, - { - "name": "Security Room", - "zone_id": 2 - }, - { - "name": "Exit Tunnel", - "zone_id": 2 - }, - - { - "name": "West Courtyard", - "zone_id": 3 - }, - { - "name": "East Courtyard", - "zone_id": 3 - }, - { - "name": "Guard Room", - "zone_id": 3 - }, - { - "name": "RPD Entrance", - "zone_id": 3 - }, - { - "name": "Main Lobby", - "zone_id": 3 - }, - { - "name": "RPD Reception", - "zone_id": 3 - }, - { - "name": "Operations Room", - "zone_id": 3 - }, - { - "name": "Operations Room 2", - "zone_id": 3 - }, - { - "name": "West Hallway 1F", - "zone_id": 3 - }, - { - "name": "Safety Deposit Room", - "zone_id": 3 - }, - { - "name": "West Office", - "zone_id": 3 - }, - { - "name": "Darkroom", - "zone_id": 3 - }, - { - "name": "West Hallway 3F", - "zone_id": 3 - }, - { - "name": "Shower Room", - "zone_id": 3 - }, - { - "name": "West Hallway 2F", - "zone_id": 3 - }, - { - "name": "STARS Office", - "zone_id": 3 - }, - - { - "name": "Subway Tunnels", - "zone_id": 4 - }, - { - "name": "Dilapidated Shelter", - "zone_id": 4 - }, - { - "name": "Promenade", - "zone_id": 4 - }, - { - "name": "Plaza", - "zone_id": 4 - }, - - { - "name": "Makeshift Sickroom", - "zone_id": 5 - }, - { - "name": "Hospital Lobby", - "zone_id": 5 - }, - { - "name": "Back Office", - "zone_id": 5 - }, - { - "name": "Hospital Reception", - "zone_id": 5 - }, - { - "name": "Main Corridor", - "zone_id": 5 - }, - { - "name": "Laboratory Reception", - "zone_id": 5 - }, - { - "name": "Emergency Entrance", - "zone_id": 5 - }, - { - "name": "Operating Room", - "zone_id": 5 - }, - { - "name": "Main Corridor 2F", - "zone_id": 5 - }, - { - "name": "Courtyard", - "zone_id": 5 - }, - { - "name": "Records Room", - "zone_id": 5 - }, - { - "name": "Staff Room", - "zone_id": 5 - }, - { - "name": "Locker Room", - "zone_id": 5 - }, - { - "name": "Nurse Station", - "zone_id": 5 - }, - { - "name": "Linen Room", - "zone_id": 5 - }, - { - "name": "Sickroom", - "zone_id": 5 - }, - { - "name": "Treatment Room", - "zone_id": 5 - }, - { - "name": "Research Laboratory", - "zone_id": 5 - }, - { - "name": "Sample Room", - "zone_id": 5 - }, - { - "name": "Generator Room", - "zone_id": 5 - }, - { - "name": "Loading Bay", - "zone_id": 5 - }, - { - "name": "Bioweapons Shipping", - "zone_id": 5 - }, - { - "name": "Shipping Office", - "zone_id": 5 - }, - { - "name": "Warehouse", - "zone_id": 5 - }, - { - "name": "Small Storage Room", - "zone_id": 5 - }, - { - "name": "Surveillance Room", - "zone_id": 5 - }, - - { - "name": "Laboratory Hallway", - "zone_id": 6 - }, - { - "name": "Laboratory Storage", - "zone_id": 6 - }, - { - "name": "Laboratory Hallway 2F", - "zone_id": 6 - }, - { - "name": "Experiment Room", - "zone_id": 6 - }, - { - "name": "Experiment Storage", - "zone_id": 6 - }, - { - "name": "Server Room", - "zone_id": 6 - }, - { - "name": "Server Room 2F", - "zone_id": 6 - }, - { - "name": "Bioweapon Incubation Room", - "zone_id": 6 - }, - { - "name": "Walkway", - "zone_id": 6 - }, - { - "name": "Incubation Lab", - "zone_id": 6 - }, - { - "name": "Lab 1", - "zone_id": 6 - }, - { - "name": "Worker's Break Room", - "zone_id": 6 - }, - { - "name": "Disposable Chamber Walkway", - "zone_id": 6 - }, - { - "name": "Disposable Chamber", - "zone_id": 6 - }, - { - "name": "Staff Break Room", - "zone_id": 6 - }, - { - "name": "Weapons Testing Area", - "zone_id": 6 - }, - { - "name": "Helipad", - "zone_id": 6 - } +[ + { + "name": "Menu", + "zone_id": 1 + }, + { + "name": "Subway Station", + "zone_id": 1 + }, + { + "name": "South Avenue", + "zone_id": 1 + }, + { + "name": "Main Avenue", + "zone_id": 1 + }, + { + "name": "Toy Shop", + "zone_id": 1 + }, + { + "name": "Supermarket", + "zone_id": 1 + }, + { + "name": "Shopping Plaza", + "zone_id": 1 + }, + { + "name": "Building Rooftop", + "zone_id": 1 + }, + { + "name": "Donut Shop", + "zone_id": 1 + }, + { + "name": "Drugstore Storage", + "zone_id": 1 + }, + { + "name": "Business Street", + "zone_id": 1 + }, + { + "name": "Pharmacy", + "zone_id": 1 + }, + { + "name": "Subway Office", + "zone_id": 1 + }, + { + "name": "Side Alley", + "zone_id": 1 + }, + { + "name": "Garage Entry", + "zone_id": 1 + }, + { + "name": "Tool Shop", + "zone_id": 1 + }, + { + "name": "Garage", + "zone_id": 1 + }, + { + "name": "Back Alley", + "zone_id": 1 + }, + { + "name": "Substation Street", + "zone_id": 1 + }, + { + "name": "Substation", + "zone_id": 1 + }, + { + "name": "Outdoor Area", + "zone_id": 1 + }, + { + "name": "Power Maze", + "zone_id": 1 + }, + { + "name": "Nemesis Chase", + "zone_id": 1 + }, + { + "name": "Demolition Site 1st Floor", + "zone_id": 1 + }, + { + "name": "Demolition Site Storage", + "zone_id": 1 + }, + { + "name": "Demolition Site Roof", + "zone_id": 1 + }, + { + "name": "Industry Street", + "zone_id": 1 + }, + { + "name": "Outside Gun Shop", + "zone_id": 1 + }, + { + "name": "Gun Shop", + "zone_id": 1 + }, + { + "name": "Small Alley", + "zone_id": 1 + }, + { + "name": "House", + "zone_id": 1 + }, + { + "name": "Scaffolding", + "zone_id": 1 + }, + + { + "name": "Sewer Entrance", + "zone_id": 2 + }, + { + "name": "Lower Waterway", + "zone_id": 2 + }, + { + "name": "Manager's Office", + "zone_id": 2 + }, + { + "name": "Overpass", + "zone_id": 2 + }, + { + "name": "East Tunnel", + "zone_id": 2 + }, + { + "name": "Circular Stairs", + "zone_id": 2 + }, + { + "name": "South Office", + "zone_id": 2 + }, + { + "name": "West Tunnel", + "zone_id": 2 + }, + { + "name": "Northwest Tunnel", + "zone_id": 2 + }, + { + "name": "Sewer Laboratory", + "zone_id": 2 + }, + { + "name": "Upper Access", + "zone_id": 2 + }, + { + "name": "Security Room", + "zone_id": 2 + }, + { + "name": "Exit Tunnel", + "zone_id": 2 + }, + + { + "name": "West Courtyard", + "zone_id": 3 + }, + { + "name": "East Courtyard", + "zone_id": 3 + }, + { + "name": "Guard Room", + "zone_id": 3 + }, + { + "name": "RPD Entrance", + "zone_id": 3 + }, + { + "name": "Main Lobby", + "zone_id": 3 + }, + { + "name": "RPD Reception", + "zone_id": 3 + }, + { + "name": "Operations Room", + "zone_id": 3 + }, + { + "name": "Operations Room 2", + "zone_id": 3 + }, + { + "name": "West Hallway 1F", + "zone_id": 3 + }, + { + "name": "Safety Deposit Room", + "zone_id": 3 + }, + { + "name": "West Office", + "zone_id": 3 + }, + { + "name": "Darkroom", + "zone_id": 3 + }, + { + "name": "West Hallway 3F", + "zone_id": 3 + }, + { + "name": "Shower Room", + "zone_id": 3 + }, + { + "name": "West Hallway 2F", + "zone_id": 3 + }, + { + "name": "STARS Office", + "zone_id": 3 + }, + + { + "name": "Subway Tunnels", + "zone_id": 4 + }, + { + "name": "Dilapidated Shelter", + "zone_id": 4 + }, + { + "name": "Promenade", + "zone_id": 4 + }, + { + "name": "Plaza", + "zone_id": 4 + }, + + { + "name": "Makeshift Sickroom", + "zone_id": 5 + }, + { + "name": "Hospital Lobby", + "zone_id": 5 + }, + { + "name": "Back Office", + "zone_id": 5 + }, + { + "name": "Hospital Reception", + "zone_id": 5 + }, + { + "name": "Main Corridor", + "zone_id": 5 + }, + { + "name": "Laboratory Reception", + "zone_id": 5 + }, + { + "name": "Emergency Entrance", + "zone_id": 5 + }, + { + "name": "Operating Room", + "zone_id": 5 + }, + { + "name": "Main Corridor 2F", + "zone_id": 5 + }, + { + "name": "Courtyard", + "zone_id": 5 + }, + { + "name": "Records Room", + "zone_id": 5 + }, + { + "name": "Staff Room", + "zone_id": 5 + }, + { + "name": "Locker Room", + "zone_id": 5 + }, + { + "name": "Nurse Station", + "zone_id": 5 + }, + { + "name": "Linen Room", + "zone_id": 5 + }, + { + "name": "Sickroom", + "zone_id": 5 + }, + { + "name": "Treatment Room", + "zone_id": 5 + }, + { + "name": "Research Laboratory", + "zone_id": 5 + }, + { + "name": "Sample Room", + "zone_id": 5 + }, + { + "name": "Generator Room", + "zone_id": 5 + }, + { + "name": "Loading Bay", + "zone_id": 5 + }, + { + "name": "Bioweapons Shipping", + "zone_id": 5 + }, + { + "name": "Shipping Office", + "zone_id": 5 + }, + { + "name": "Warehouse", + "zone_id": 5 + }, + { + "name": "Small Storage Room", + "zone_id": 5 + }, + { + "name": "Surveillance Room", + "zone_id": 5 + }, + + { + "name": "Laboratory Hallway", + "zone_id": 6 + }, + { + "name": "Laboratory Storage", + "zone_id": 6 + }, + { + "name": "Laboratory Hallway 2F", + "zone_id": 6 + }, + { + "name": "Experiment Room", + "zone_id": 6 + }, + { + "name": "Experiment Storage", + "zone_id": 6 + }, + { + "name": "Server Room", + "zone_id": 6 + }, + { + "name": "Server Room 2F", + "zone_id": 6 + }, + { + "name": "Bioweapon Incubation Room", + "zone_id": 6 + }, + { + "name": "Walkway", + "zone_id": 6 + }, + { + "name": "Incubation Lab", + "zone_id": 6 + }, + { + "name": "Lab 1", + "zone_id": 6 + }, + { + "name": "Worker's Break Room", + "zone_id": 6 + }, + { + "name": "Disposable Chamber Walkway", + "zone_id": 6 + }, + { + "name": "Disposable Chamber", + "zone_id": 6 + }, + { + "name": "Staff Break Room", + "zone_id": 6 + }, + { + "name": "Weapons Testing Area", + "zone_id": 6 + }, + { + "name": "Helipad", + "zone_id": 6 + } ] \ No newline at end of file diff --git a/reframework/data/ArchipelagoRE3R/jill/a/typewriters.json b/reframework/data/ArchipelagoRE3R/typewriters.json similarity index 96% rename from reframework/data/ArchipelagoRE3R/jill/a/typewriters.json rename to reframework/data/ArchipelagoRE3R/typewriters.json index 04086e9..30d10c8 100644 --- a/reframework/data/ArchipelagoRE3R/jill/a/typewriters.json +++ b/reframework/data/ArchipelagoRE3R/typewriters.json @@ -1,144 +1,144 @@ -[ - { - "name": "Downtown - Subway Station", - "location_id": 4, - "map_id": 134, - "player_position": [-118.12, 0.0, -96.67], - "item_object": "0201_sm41_000_Typewriter01A_00_control" - }, - { - "name": "Downtown - Donut Shop", - "location_id": 4, - "map_id": 167, - "player_position": [-144.62, -3.0, -128.65], - "item_object": "0234_sm41_000_Typewriter01A_00_control" - }, - { - "name": "Downtown - Tool Shop", - "location_id": 4, - "map_id": 154, - "player_position": [-82.7, 0.0, -159.51], - "item_object": "0221_sm41_000_Typewriter01A_00_control" - }, - { - "name": "Downtown - Control Room", - "location_id": 4, - "map_id": 200, - "player_position": [-74.58, 4.0, -198.71], - "item_object": "0404_sm41_000_Typewriter01A_00_control", - "line_break": true - }, - - { - "name": "Sewer - Manager's Office", - "location_id": 4, - "map_id": 208, - "player_position": [-108.32, -9.0, -54.39], - "item_object": "0603_sm41_000_Typewriter01A_00_control" - }, - { - "name": "Sewer - South Office", - "location_id": 4, - "map_id": 214, - "player_position": [-126.38, -16.0, 3.84], - "item_object": "0609_sm41_000_Typewriter01A_00_control" - }, - - { - "name": "Demolition Site - Storage", - "location_id": 4, - "map_id": 232, - "player_position": [-129.45, 0.0, -35.59], - "item_object": "0706_sm41_000_Typewriter01A_00_control" - }, - { - "name": "Demolition Site - Top Floor", - "location_id": 4, - "map_id": 230, - "player_position": [-147.96, 32.0, -36.21], - "item_object": "0704_sm41_000_Typewriter01A_00_control" - }, - { - "name": "Demolition Site - Gun Shop", - "location_id": 4, - "map_id": 124, - "player_position": [-12.83, 0.01, -74.54], - "item_object": "0103_sm41_000_Typewriter01A_00_control", - "line_break": true - }, - - { - "name": "RPD - Main Lobby", - "location_id": 3, - "map_id": 30, - "player_position": [2.88, 0.02, 0.01], - "item_object": "Typewriter_2_1_005_control" - }, - { - "name": "RPD - Darkroom", - "location_id": 3, - "map_id": 44, - "player_position": [-14.59, 0.0, -17.11], - "item_object": "Typewriter_2_1_002_control" - }, - - { - "name": "Clocktower - Shelter", - "location_id": 5, - "map_id": 238, - "player_position": [-121.48, -9.0, -374.38], - "item_object": "0802_sm41_000_Typewriter01A_00_control" - }, - - { - "name": "Hospital - Makeshift Sickroom", - "location_id": 6, - "map_id": 243, - "player_position": [0.43, 6.0, -535.45], - "item_object": "sm41_000_Typewriter01A_4_0_00_control" - }, - { - "name": "Hospital - Records Room", - "location_id": 6, - "map_id": 258, - "player_position": [-2.78, 9.5, -580.02], - "item_object": "sm41_000_Typewriter01A_4_0_01_control" - }, - { - "name": "Hospital - Shipping Office", - "location_id": 14, - "map_id": 299, - "player_position": [22.76, -63.48, -589.75], - "item_object": "sm41_000_Typewriter01A_4_2_01_control", - "line_break": true - }, - { - "name": "Hospital - Surveillance Room", - "location_id": 14, - "map_id": 298, - "player_position": [11.47, -62.99, -604.88], - "item_object": "sm41_000_Typewriter01A_4_2_02_control" - }, - - { - "name": "NEST 2 - Storage", - "location_id": 13, - "map_id": 305, - "player_position": [-35.76, -64.5, -619.63], - "item_object": "0102_sm41_000_Typewriter01A_00_control" - }, - { - "name": "NEST 2 - Worker's Break Room", - "location_id": 13, - "map_id": 317, - "player_position": [-74.33, -60.0, -652.55], - "item_object": "0202_sm41_000_Typewriter01A_00_control" - }, - { - "name": "NEST 2 - Staff Break Room", - "location_id": 13, - "map_id": 320, - "player_position": [-134.95, -68.0, -684.47], - "item_object": "0302_sm41_000_Typewriter01A_00_control" - } -] +[ + { + "name": "Downtown - Subway Station", + "location_id": 4, + "map_id": 134, + "player_position": [-118.12, 0.0, -96.67], + "item_object": "0201_sm41_000_Typewriter01A_00_control" + }, + { + "name": "Downtown - Donut Shop", + "location_id": 4, + "map_id": 167, + "player_position": [-144.62, -3.0, -128.65], + "item_object": "0234_sm41_000_Typewriter01A_00_control" + }, + { + "name": "Downtown - Tool Shop", + "location_id": 4, + "map_id": 154, + "player_position": [-82.7, 0.0, -159.51], + "item_object": "0221_sm41_000_Typewriter01A_00_control" + }, + { + "name": "Downtown - Control Room", + "location_id": 4, + "map_id": 200, + "player_position": [-74.58, 4.0, -198.71], + "item_object": "0404_sm41_000_Typewriter01A_00_control", + "line_break": true + }, + + { + "name": "Sewer - Manager's Office", + "location_id": 4, + "map_id": 208, + "player_position": [-108.32, -9.0, -54.39], + "item_object": "0603_sm41_000_Typewriter01A_00_control" + }, + { + "name": "Sewer - South Office", + "location_id": 4, + "map_id": 214, + "player_position": [-126.38, -16.0, 3.84], + "item_object": "0609_sm41_000_Typewriter01A_00_control" + }, + + { + "name": "Demolition Site - Storage", + "location_id": 4, + "map_id": 232, + "player_position": [-129.45, 0.0, -35.59], + "item_object": "0706_sm41_000_Typewriter01A_00_control" + }, + { + "name": "Demolition Site - Top Floor", + "location_id": 4, + "map_id": 230, + "player_position": [-147.96, 32.0, -36.21], + "item_object": "0704_sm41_000_Typewriter01A_00_control" + }, + { + "name": "Demolition Site - Gun Shop", + "location_id": 4, + "map_id": 124, + "player_position": [-12.83, 0.01, -74.54], + "item_object": "0103_sm41_000_Typewriter01A_00_control", + "line_break": true + }, + + { + "name": "RPD - Main Lobby", + "location_id": 3, + "map_id": 30, + "player_position": [2.88, 0.02, 0.01], + "item_object": "Typewriter_2_1_005_control" + }, + { + "name": "RPD - Darkroom", + "location_id": 3, + "map_id": 44, + "player_position": [-14.59, 0.0, -17.11], + "item_object": "Typewriter_2_1_002_control" + }, + + { + "name": "Clocktower - Shelter", + "location_id": 5, + "map_id": 238, + "player_position": [-121.48, -9.0, -374.38], + "item_object": "0802_sm41_000_Typewriter01A_00_control" + }, + + { + "name": "Hospital - Makeshift Sickroom", + "location_id": 6, + "map_id": 243, + "player_position": [0.43, 6.0, -535.45], + "item_object": "sm41_000_Typewriter01A_4_0_00_control" + }, + { + "name": "Hospital - Records Room", + "location_id": 6, + "map_id": 258, + "player_position": [-2.78, 9.5, -580.02], + "item_object": "sm41_000_Typewriter01A_4_0_01_control" + }, + { + "name": "Hospital - Shipping Office", + "location_id": 14, + "map_id": 299, + "player_position": [22.76, -63.48, -589.75], + "item_object": "sm41_000_Typewriter01A_4_2_01_control", + "line_break": true + }, + { + "name": "Hospital - Surveillance Room", + "location_id": 14, + "map_id": 298, + "player_position": [11.47, -62.99, -604.88], + "item_object": "sm41_000_Typewriter01A_4_2_02_control" + }, + + { + "name": "NEST 2 - Storage", + "location_id": 13, + "map_id": 305, + "player_position": [-35.76, -64.5, -619.63], + "item_object": "0102_sm41_000_Typewriter01A_00_control" + }, + { + "name": "NEST 2 - Worker's Break Room", + "location_id": 13, + "map_id": 317, + "player_position": [-74.33, -60.0, -652.55], + "item_object": "0202_sm41_000_Typewriter01A_00_control" + }, + { + "name": "NEST 2 - Staff Break Room", + "location_id": 13, + "map_id": 320, + "player_position": [-134.95, -68.0, -684.47], + "item_object": "0302_sm41_000_Typewriter01A_00_control" + } +] diff --git a/reframework/data/ArchipelagoRE3R/jill/zones.json b/reframework/data/ArchipelagoRE3R/zones.json similarity index 92% rename from reframework/data/ArchipelagoRE3R/jill/zones.json rename to reframework/data/ArchipelagoRE3R/zones.json index 96ed894..696897b 100644 --- a/reframework/data/ArchipelagoRE3R/jill/zones.json +++ b/reframework/data/ArchipelagoRE3R/zones.json @@ -1,26 +1,26 @@ -[ - { - "id": 1, - "name": "Downtown" - }, - { - "id": 2, - "name": "Sewer" - }, - { - "id": 3, - "name": "RPD" - }, - { - "id": 4, - "name": "Clock Tower" - }, - { - "id": 5, - "name": "Hospital" - }, - { - "id": 6, - "name": "NEST" - } +[ + { + "id": 1, + "name": "Downtown" + }, + { + "id": 2, + "name": "Sewer" + }, + { + "id": 3, + "name": "RPD" + }, + { + "id": 4, + "name": "Clock Tower" + }, + { + "id": 5, + "name": "Hospital" + }, + { + "id": 6, + "name": "NEST" + } ] \ No newline at end of file From 8575d275a2ec9edcb6b982a7d20934fc0bd21416 Mon Sep 17 00:00:00 2001 From: ElGrenier <48546541+ElGrenier@users.noreply.github.com> Date: Tue, 13 May 2025 13:21:18 +0200 Subject: [PATCH 2/2] Added missing file (Forgot to save them) --- reframework/autorun/randomizer/Lookups.lua | 9 --------- reframework/autorun/randomizer/Tools.lua | 7 +++---- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/reframework/autorun/randomizer/Lookups.lua b/reframework/autorun/randomizer/Lookups.lua index 5fd7b9a..edcac17 100644 --- a/reframework/autorun/randomizer/Lookups.lua +++ b/reframework/autorun/randomizer/Lookups.lua @@ -5,8 +5,6 @@ Lookups.items = {} Lookups.all_items = {} Lookups.locations = {} Lookups.typewriters = {} --- Lookups.character = nil --- Lookups.scenario = nil Lookups.difficulty = nil function Lookups.Load(difficulty) @@ -15,13 +13,8 @@ function Lookups.Load(difficulty) return end - -- Lookups.character = character - -- Lookups.scenario = scenario Lookups.difficulty = difficulty - -- character = string.lower(character) - -- scenario = string.lower(scenario) - local item_file = Lookups.filepath .. "/items.json" local location_file = Lookups.filepath .. "/locations.json" local location_hardcore_file = Lookups.filepath .. "/locations_hardcore.json" @@ -70,8 +63,6 @@ function Lookups.Reset() Lookups.items = {} Lookups.locations = {} Lookups.typewriters = {} - -- Lookups.character = nil - -- Lookups.scenario = nil Lookups.difficulty = nil end diff --git a/reframework/autorun/randomizer/Tools.lua b/reframework/autorun/randomizer/Tools.lua index 8168e01..f55aac3 100644 --- a/reframework/autorun/randomizer/Tools.lua +++ b/reframework/autorun/randomizer/Tools.lua @@ -6,9 +6,8 @@ function Tools.ShowGUI() local deathlink_color = AP_REF.HexToImguiColor('FFFFFF') -- if the lookups contain data, then we're connected, so do everything that needs connection - if Lookups.character and Lookups.scenario then - scenario_text = " " .. Lookups.character:gsub("^%l", string.upper) .. " " .. string.upper(Lookups.scenario) .. - " - " .. Lookups.difficulty:gsub("^%l", string.upper) + if Lookups.difficulty then + scenario_text = " " .. " - " .. Lookups.difficulty:gsub("^%l", string.upper) if Archipelago.death_link then deathlink_text = " On" @@ -56,7 +55,7 @@ function Tools.ShowGUI() imgui.text(" - Various Fixes") imgui.new_line() - if Lookups.character and Lookups.scenario then + if Lookups.difficulty then imgui.text_colored("Missing Items?", -10825765) imgui.text("If you were sent items at the ") imgui.text("start and didn't receive them,")