forked from mirror/Archipelago
Some checks failed
Analyze modified files / flake8 (push) Failing after 2m28s
Build / build-win (push) Has been cancelled
Build / build-ubuntu2204 (push) Has been cancelled
ctest / Test C++ ubuntu-latest (push) Has been cancelled
ctest / Test C++ windows-latest (push) Has been cancelled
Analyze modified files / mypy (push) Has been cancelled
Build and Publish Docker Images / Push Docker image to Docker Hub (push) Successful in 5m4s
Native Code Static Analysis / scan-build (push) Failing after 5m2s
type check / pyright (push) Successful in 1m7s
unittests / Test Python 3.11.2 ubuntu-latest (push) Failing after 16m23s
unittests / Test Python 3.12 ubuntu-latest (push) Failing after 28m19s
unittests / Test Python 3.13 ubuntu-latest (push) Failing after 14m49s
unittests / Test hosting with 3.13 on ubuntu-latest (push) Successful in 5m0s
unittests / Test Python 3.13 macos-latest (push) Has been cancelled
unittests / Test Python 3.11 windows-latest (push) Has been cancelled
unittests / Test Python 3.13 windows-latest (push) Has been cancelled
21885 lines
702 KiB
Python
21885 lines
702 KiB
Python
from typing import Dict, NamedTuple, Optional
|
|
from BaseClasses import Location, LocationProgressType
|
|
|
|
|
|
class FF12OpenWorldLocation(Location):
|
|
game: str = "Final Fantasy 12 Open World"
|
|
|
|
|
|
class FF12OpenWorldLocationData(NamedTuple):
|
|
region: str
|
|
type: str
|
|
str_id: str
|
|
address: Optional[int] = None
|
|
classification: LocationProgressType = LocationProgressType.DEFAULT
|
|
secondary_index: int = 0
|
|
difficulty: int = 0
|
|
|
|
location_data_table: Dict[str, FF12OpenWorldLocationData] = {
|
|
"Archades - Grand Arcade Treasure 1": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="alc_a01",
|
|
difficulty=7
|
|
),
|
|
"Old Archades - Alley of Muted Sighs Treasure 1": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=2,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a01",
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Muted Sighs Treasure 2": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=3,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Muted Sighs Treasure 3": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=4,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Muted Sighs Treasure 4": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=5,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Muted Sighs Treasure 5": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=6,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Muted Sighs Treasure 6": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=7,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Muted Sighs Treasure 7": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=8,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Muted Sighs Treasure 8": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=9,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a01",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Muted Sighs Treasure 9": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=10,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a01",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 1": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=11,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 2": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=12,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 3": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=13,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 4": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=14,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 5": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=15,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 6": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=16,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 7": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=17,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 8": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=18,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 9": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=19,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 10": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=20,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Old Archades - Alley of Low Whispers Treasure 11": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=21,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ald_a02",
|
|
secondary_index=10,
|
|
difficulty=1
|
|
),
|
|
"Skyferry - Air Deck Treasure 1": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=22,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="asp_a03",
|
|
difficulty=1
|
|
),
|
|
"Necrohol of Nabudis - Hall of Effulgent Light Treasure 1": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=23,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a01",
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Effulgent Light Treasure 2": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=24,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a01",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Effulgent Light Treasure 3": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=25,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a01",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Effulgent Light Treasure 4": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=26,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a01",
|
|
secondary_index=3,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Effulgent Light Treasure 5": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=27,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a01",
|
|
secondary_index=4,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Effulgent Light Treasure 6": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=28,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a01",
|
|
secondary_index=5,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Effulgent Light Treasure 7": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=29,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a01",
|
|
secondary_index=6,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Effulgent Light Treasure 8": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=30,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a01",
|
|
secondary_index=7,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Distant Song Treasure 1": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=31,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a02",
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Distant Song Treasure 2": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=32,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a02",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Distant Song Treasure 3": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=33,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a02",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Distant Song Treasure 4": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=34,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a02",
|
|
secondary_index=3,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Distant Song Treasure 5": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=35,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a02",
|
|
secondary_index=4,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Distant Song Treasure 6": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=36,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a02",
|
|
secondary_index=5,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Distant Song Treasure 7": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=37,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a02",
|
|
secondary_index=6,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Distant Song Treasure 8": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=38,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a02",
|
|
secondary_index=7,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Distant Song Treasure 9": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=39,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_a02",
|
|
secondary_index=8,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 1": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=40,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 2": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=41,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 3": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=42,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 4": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=43,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=3,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 5": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=44,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=4,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 6": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=45,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=5,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 7": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=46,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=6,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 8": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=47,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=7,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 9": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=48,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=8,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 10": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=49,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=9,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Cloister of the Highborn Treasure 11": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=50,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_b01",
|
|
secondary_index=10,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of the Ivory Covenant Treasure 1": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=51,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c01",
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of the Ivory Covenant Treasure 2": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=52,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c01",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of the Ivory Covenant Treasure 3": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=53,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c01",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of the Ivory Covenant Treasure 4": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=54,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c01",
|
|
secondary_index=3,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of the Ivory Covenant Treasure 5": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=55,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c01",
|
|
secondary_index=4,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of the Ivory Covenant Treasure 6": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=56,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c01",
|
|
secondary_index=5,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of the Ivory Covenant Treasure 7": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=57,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c01",
|
|
secondary_index=6,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of the Ivory Covenant Treasure 8": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=58,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c01",
|
|
secondary_index=7,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Slumbering Might Treasure 1": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=59,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c02",
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Slumbering Might Treasure 2": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=60,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c02",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Slumbering Might Treasure 3": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=61,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c02",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Slumbering Might Treasure 4": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=62,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c02",
|
|
secondary_index=3,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Slumbering Might Treasure 5": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=63,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c02",
|
|
secondary_index=4,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Hall of Slumbering Might Treasure 6": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=64,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_c02",
|
|
secondary_index=5,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - The Crucible Treasure 1": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=65,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_e01",
|
|
difficulty=7
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Solace Treasure 1": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=66,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_f01",
|
|
difficulty=7
|
|
),
|
|
"Necrohol of Nabudis - Cloister of Reason Treasure 1": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=67,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bds_g01",
|
|
difficulty=7
|
|
),
|
|
"Nabreus Deadlands - Greencrag Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=68,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a01",
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Greencrag Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=69,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Vale of Lingering Sorrow Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=70,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a03",
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Vale of Lingering Sorrow Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=71,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a03",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Vale of Lingering Sorrow Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=72,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a03",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Vale of Lingering Sorrow Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=73,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a03",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Echoes of the Past Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=74,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a05",
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Echoes of the Past Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=75,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a05",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Echoes of the Past Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=76,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a05",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Echoes of the Past Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=77,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a05",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Echoes of the Past Treasure 5": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=78,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a05",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Echoes of the Past Treasure 6": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=79,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_a05",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=80,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=81,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=82,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=83,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 5": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=84,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 6": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=85,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 7": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=86,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 8": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=87,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 9": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=88,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 10": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=89,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 11": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=90,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=10,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Slumbermead Treasure 12": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=91,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b01",
|
|
secondary_index=11,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Fog Mutters Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=92,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b03",
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Fog Mutters Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=93,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b03",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - The Fog Mutters Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=94,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b03",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=95,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=96,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=97,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=98,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 5": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=99,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 6": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=100,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 7": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=101,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 8": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=102,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 9": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=103,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Lifeless Strand Treasure 10": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=104,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b05",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Field of the Fallen Lord Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=105,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b06",
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Field of the Fallen Lord Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=106,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b06",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Field of the Fallen Lord Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=107,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b06",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Field of the Fallen Lord Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=108,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b06",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Field of the Fallen Lord Treasure 5": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=109,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b06",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Field of the Fallen Lord Treasure 6": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=110,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b06",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Field of the Fallen Lord Treasure 7": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=111,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bog_b06",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Mt. Bur-Omisace - Temple Grounds Treasure 1": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=112,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="bul_a03",
|
|
difficulty=2
|
|
),
|
|
"Draklor Laboratory - 6613 East Treasure 1": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=113,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_c03",
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 6613 East Treasure 2": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=114,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_c03",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 6613 East Treasure 3": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=115,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_c03",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 7002 East Treasure 1": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=116,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_c15",
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 7002 East Treasure 2": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=117,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_c15",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 6711 West Treasure 1": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=118,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_d02",
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 6711 West Treasure 2": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=119,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_d02",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 6711 West Treasure 3": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=120,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_d02",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 6801 West Treasure 1": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=121,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_e15",
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 6801 West Treasure 2": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=122,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_e15",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 6801 West Treasure 3": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=123,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_e15",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Draklor Laboratory - 6801 West Treasure 4": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=124,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dor_e15",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=125,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=126,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=127,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=128,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=129,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=130,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=131,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=132,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=133,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - The Stepping Treasure 10": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=134,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a01",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Yardang Labyrinth Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=135,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a02",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Yardang Labyrinth Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=136,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Yardang Labyrinth Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=137,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Yardang Labyrinth Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=138,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Yardang Labyrinth Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=139,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Yardang Labyrinth Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=140,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a02",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Yardang Labyrinth Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=141,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a02",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Yardang Labyrinth Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=142,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a02",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Yardang Labyrinth Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=143,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a02",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=144,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=145,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=146,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=147,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=148,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=149,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=150,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=151,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=152,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 10": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=153,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Sand-swept Naze Treasure 11": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=154,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a03",
|
|
secondary_index=10,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=155,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=156,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=157,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=158,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=159,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=160,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=161,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=162,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=163,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Banks of the Nebra Treasure 10": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=164,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a04",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Outpost Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=165,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a07",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Outpost Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=166,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a07",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Outpost Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=167,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a07",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Outpost Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=168,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_a07",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=169,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=170,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=171,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=172,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=173,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=174,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=175,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=176,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=177,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 10": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=178,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 11": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=179,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=10,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 12": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=180,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=11,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 13": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=181,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=12,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - The Yoma Treasure 14": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=182,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c01",
|
|
secondary_index=13,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=183,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=184,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=185,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=186,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=187,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=188,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=189,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=190,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=191,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 10": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=192,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 11": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=193,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=10,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 12": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=194,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=11,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand North - Broken Sands Treasure 13": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand North",
|
|
address=195,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="dst_c02",
|
|
secondary_index=12,
|
|
difficulty=2
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - East Tanks Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=196,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a01",
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - East Tanks Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=197,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - East Tanks Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=198,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - East Tanks Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=199,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=200,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=201,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=202,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=203,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=204,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=205,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=206,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=207,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=208,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - Refinery Treasure 10": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=209,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a02",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=210,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=211,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=212,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=213,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=214,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=215,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=216,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=217,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=218,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - East Junction Treasure 10": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=219,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a03",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Primary Tank Complex Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=220,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a04",
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Primary Tank Complex Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=221,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a04",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Primary Tank Complex Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=222,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a04",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Primary Tank Complex Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=223,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a04",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Primary Tank Complex Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=224,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a04",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Primary Tank Complex Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=225,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a04",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Primary Tank Complex Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=226,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a04",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Primary Tank Complex Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=227,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a04",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Central Junction Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=228,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a05",
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Central Junction Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=229,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a05",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Central Junction Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=230,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a05",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Central Junction Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=231,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a05",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Central Junction Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=232,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a05",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Central Junction Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=233,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a05",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Central Junction Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=234,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a05",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Central Junction Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=235,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a05",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Central Junction Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=236,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a05",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - South Tanks Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=237,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a06",
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - South Tanks Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=238,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a06",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - South Tanks Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=239,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a06",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - South Tanks Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=240,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a06",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - South Tanks Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=241,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a06",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 1 - South Tanks Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=242,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a06",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 2 - Refinery Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=243,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a07",
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 2 - Refinery Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=244,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a07",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 2 - Refinery Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=245,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a07",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 2 - Refinery Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=246,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a07",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 2 - Refinery Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=247,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a07",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 2 - Refinery Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=248,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a07",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 2 - Refinery Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=249,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a07",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 2 - Refinery Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=250,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a07",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Ogir-Yensa Sandsea - Platform 2 - Refinery Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=251,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ene_a07",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - The Urutan-Yensa Sea Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=252,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a01",
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - The Urutan-Yensa Sea Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=253,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - The Urutan-Yensa Sea Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=254,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - The Urutan-Yensa Sea Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=255,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - The Urutan-Yensa Sea Treasure 5": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=256,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - The Urutan-Yensa Sea Treasure 6": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=257,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - The Urutan-Yensa Sea Treasure 7": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=258,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Augur Hill Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=259,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a03",
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Augur Hill Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=260,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Augur Hill Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=261,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Augur Hill Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=262,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Augur Hill Treasure 5": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=263,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Augur Hill Treasure 6": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=264,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Augur Hill Treasure 7": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=265,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a03",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Augur Hill Treasure 8": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=266,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a03",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Augur Hill Treasure 9": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=267,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a03",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Yellow Sands Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=268,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a04",
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Yellow Sands Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=269,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a04",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Yellow Sands Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=270,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a04",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Yellow Sands Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=271,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a04",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Yellow Sands Treasure 5": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=272,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a04",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Yellow Sands Treasure 6": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=273,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a04",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Yellow Sands Treasure 7": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=274,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a04",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Yellow Sands Treasure 8": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=275,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a04",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Yellow Sands Treasure 9": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=276,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_a04",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Demesne of the Sandqueen Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=277,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b01",
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Demesne of the Sandqueen Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=278,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Demesne of the Sandqueen Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=279,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Demesne of the Sandqueen Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=280,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Demesne of the Sandqueen Treasure 5": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=281,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Demesne of the Sandqueen Treasure 6": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=282,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Demesne of the Sandqueen Treasure 7": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=283,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Demesne of the Sandqueen Treasure 8": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=284,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b01",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Demesne of the Sandqueen Treasure 9": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=285,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b01",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Trail of Fading Warmth Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=286,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b02",
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 1": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=287,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 2": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=288,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 3": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=289,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 4": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=290,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 5": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=291,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 6": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=292,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 7": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=293,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 8": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=294,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 9": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=295,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 10": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=296,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Simoon Bluff Treasure 11": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=297,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="enw_b03",
|
|
secondary_index=10,
|
|
difficulty=1
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 1": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=298,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 2": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=299,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 3": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=300,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 4": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=301,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 5": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=302,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 6": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=303,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 7": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=304,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 8": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=305,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 9": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=306,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Reseta Strand Treasure 10": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=307,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a01",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 1": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=308,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 2": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=309,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 3": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=310,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 4": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=311,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 5": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=312,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 6": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=313,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 7": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=314,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 8": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=315,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 9": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=316,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Pora-Pora Sands Treasure 10": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=317,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a02",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 1": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=318,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 2": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=319,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 3": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=320,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 4": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=321,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 5": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=322,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 6": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=323,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 7": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=324,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 8": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=325,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 9": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=326,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Mauleia Strand Treasure 10": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=327,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a03",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Uahuk Treasure 1": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=328,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a04",
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Uahuk Treasure 2": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=329,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a04",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Uahuk Treasure 3": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=330,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a04",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Uahuk Treasure 4": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=331,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a04",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Uahuk Treasure 5": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=332,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a04",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Uahuk Treasure 6": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=333,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a04",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Uahuk Treasure 7": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=334,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a04",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Uahuk Treasure 8": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=335,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a04",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Uahuk Treasure 9": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=336,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a04",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Tialan Treasure 1": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=337,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a05",
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Tialan Treasure 2": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=338,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a05",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Tialan Treasure 3": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=339,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a05",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Tialan Treasure 4": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=340,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a05",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Tialan Treasure 5": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=341,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a05",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Tialan Treasure 6": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=342,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a05",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Tialan Treasure 7": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=343,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a05",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Cape Tialan Treasure 8": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=344,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a05",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 1": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=345,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 2": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=346,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 3": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=347,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 4": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=348,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 5": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=349,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 6": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=350,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 7": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=351,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 8": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=352,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 9": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=353,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 10": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=354,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 11": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=355,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=10,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Hakawea Shore Treasure 12": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=356,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_a07",
|
|
secondary_index=11,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 1": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=357,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 2": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=358,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 3": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=359,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 4": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=360,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 5": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=361,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 6": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=362,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 7": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=363,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 8": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=364,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 9": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=365,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 10": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=366,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Caima Hills Treasure 11": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=367,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c01",
|
|
secondary_index=10,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 1": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=368,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 2": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=369,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 3": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=370,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 4": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=371,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 5": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=372,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 6": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=373,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 7": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=374,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 8": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=375,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 9": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=376,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 10": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=377,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 11": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=378,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=10,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 12": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=379,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=11,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 13": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=380,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=12,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 14": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=381,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=13,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 15": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=382,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=14,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - The Vaddu Strand Treasure 16": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=383,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c02",
|
|
secondary_index=15,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 1": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=384,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 2": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=385,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 3": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=386,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 4": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=387,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 5": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=388,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 6": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=389,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 7": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=390,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 8": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=391,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 9": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=392,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Phon Coast - Limatra Hills Treasure 10": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=393,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="fon_c03",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - The Omen-Spur Treasure 1": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=394,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a01",
|
|
difficulty=2
|
|
),
|
|
"Salikawood - The Omen-Spur Treasure 2": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=395,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Trunkwall Road Treasure 1": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=396,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a02",
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Trunkwall Road Treasure 2": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=397,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Trunkwall Road Treasure 3": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=398,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Trunkwall Road Treasure 4": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=399,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a02",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Trunkwall Road Treasure 5": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=400,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a02",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Trunkwall Road Treasure 6": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=401,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a02",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Trunkwall Road Treasure 7": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=402,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a02",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Trunkwall Road Treasure 8": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=403,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a02",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 1": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=404,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 2": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=405,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 3": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=406,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 4": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=407,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 5": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=408,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 6": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=409,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 7": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=410,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 8": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=411,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 9": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=412,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 10": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=413,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 11": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=414,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=10,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Diverging Way Treasure 12": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=415,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a03",
|
|
secondary_index=11,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Sun-dappled Path Treasure 1": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=416,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a04",
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Sun-dappled Path Treasure 2": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=417,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a04",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Sun-dappled Path Treasure 3": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=418,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a04",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Sun-dappled Path Treasure 4": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=419,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a04",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Garden of Decay Treasure 1": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=420,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a05",
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Garden of Decay Treasure 2": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=421,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a05",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Garden of Decay Treasure 3": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=422,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a05",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Garden of Decay Treasure 4": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=423,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a05",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Garden of Decay Treasure 5": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=424,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a05",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Garden of Decay Treasure 6": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=425,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_a05",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Quietened Trace Treasure 1": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=426,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_b01",
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Quietened Trace Treasure 2": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=427,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_b01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Quietened Trace Treasure 3": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=428,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_b01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Quietened Trace Treasure 4": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=429,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_b01",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Salikawood - Grand Bower Treasure 1": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=430,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_b02",
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Grand Bower Treasure 2": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=431,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_b02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Grand Bower Treasure 3": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=432,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_b02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Grand Bower Treasure 4": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=433,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_b02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Corridor of Ages Treasure 1": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=434,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c01",
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Corridor of Ages Treasure 2": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=435,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Corridor of Ages Treasure 3": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=436,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Corridor of Ages Treasure 4": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=437,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Corridor of Ages Treasure 5": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=438,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Corridor of Ages Treasure 6": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=439,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Corridor of Ages Treasure 7": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=440,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Piebald Path Treasure 1": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=441,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c02",
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Piebald Path Treasure 2": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=442,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Salikawood - Piebald Path Treasure 3": FF12OpenWorldLocationData(
|
|
region="Salikawood",
|
|
address=443,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="frs_c02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Giruvegan - The Trimahla Water-Steps Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=444,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_b01",
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - The Trimahla Water-Steps Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=445,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_b01",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - The Trimahla Water-Steps Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=446,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_b01",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - The Trimahla Water-Steps Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=447,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_b01",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - The Trimahla Water-Steps Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=448,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_b01",
|
|
secondary_index=4,
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - The Aadha Water-Steps Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=449,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_b02",
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - The Aadha Water-Steps Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=450,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_b02",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - The Aadha Water-Steps Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=451,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_b02",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - The Haamilkah Water-Steps Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=452,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_c01",
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - Gate of Fire Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=453,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_c02",
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - Gate of Fire Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=454,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_c02",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - Gate of Fire Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=455,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_c02",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - Gate of Wind Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=456,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_d01",
|
|
difficulty=4
|
|
),
|
|
"Giruvegan - Gate of Wind Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giruvegan",
|
|
address=457,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_d01",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Great Crystal - Kabonii Jilaam Pratii'vaa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=458,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_e02",
|
|
difficulty=4
|
|
),
|
|
"Great Crystal - Kabnoii Jilaam Avaa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=459,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_e03",
|
|
difficulty=4
|
|
),
|
|
"Great Crystal - Bhrum Pis Avaa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=460,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_f03",
|
|
difficulty=4
|
|
),
|
|
"Great Crystal - Bhrum Pis Pratii Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=461,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_f04",
|
|
difficulty=4
|
|
),
|
|
"Great Crystal - Trahk Pis Praa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=462,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_g02",
|
|
difficulty=4
|
|
),
|
|
"Great Crystal - Trahk Jilaam Praa'dii Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=463,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_g05",
|
|
difficulty=4
|
|
),
|
|
"Great Crystal - Crystal Peak Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=464,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_h01",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Crystal Peak Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=465,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_h01",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Dhebon Jilaam Avaapratii Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=466,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_i08",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Dhebon Jilaam Avaapratii Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=467,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_i08",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Phullam Praa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=468,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j03",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Phullam Praa Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=469,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j03",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Phullam Praa'vaa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=470,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j05",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Phullam Praa'vaa Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=471,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j05",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Phullam Pratii'vaa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=472,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j06",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Phullam Pratii'vaa Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=473,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j06",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Phullam Udiipratii Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=474,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j08",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Phullam Udiipratii Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=475,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j08",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Jilaam Praa'vaa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=476,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j13",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Jilaam Praa'vaa Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=477,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j13",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Jilaam Pratii'vaa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=478,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j14",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Sirhru Jilaam Pratii'vaa Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=479,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_j14",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Uldobi Phullam Pratii'dii Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=480,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_k06",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Uldobi Phullam Pratii'dii Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=481,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_k06",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Uldobi Phullam Udiipraa Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=482,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_k09",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Uldobi Phullam Udiipraa Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=483,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_k09",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Uldobi Phullam Pratii Treasure 1": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=484,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_k12",
|
|
difficulty=8
|
|
),
|
|
"Great Crystal - Uldobi Phullam Pratii Treasure 2": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=485,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gil_k12",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Jahara - The Elderknoll Treasure 1": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=486,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="glf_a03",
|
|
difficulty=1
|
|
),
|
|
"Jahara - The Elderknoll Treasure 2": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=487,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="glf_a03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Golmore Jungle NW - Paths of Chained Light Treasure 1": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle NW",
|
|
address=488,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_a01",
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle NW - Paths of Chained Light Treasure 2": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle NW",
|
|
address=489,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_a01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle NW - Paths of Chained Light Treasure 3": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle NW",
|
|
address=490,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_a01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle NW - Paths of Chained Light Treasure 4": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle NW",
|
|
address=491,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_a01",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle E - The Parting Glade Treasure 1": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle E",
|
|
address=492,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_a04",
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle S - The Rustling Chapel Treasure 1": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=493,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_b01",
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle S - The Rustling Chapel Treasure 2": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=494,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_b01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle S - The Rustling Chapel Treasure 3": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=495,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_b01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle S - The Rustling Chapel Treasure 4": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=496,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_b01",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle E - Dell of the Dreamer Treasure 1": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle E",
|
|
address=497,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_c01",
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle E - The Branchway Treasure 1": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle E",
|
|
address=498,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_d01",
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle E - The Branchway Treasure 2": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle E",
|
|
address=499,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_d01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle E - The Branchway Treasure 3": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle E",
|
|
address=500,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_d01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle E - The Greenswathe Treasure 1": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle E",
|
|
address=501,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_d02",
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle E - The Greenswathe Treasure 2": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle E",
|
|
address=502,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_d02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Golmore Jungle E - The Greenswathe Treasure 3": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle E",
|
|
address=503,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="gol_d02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Garamsythe Waterway - North Spur Sluiceway Treasure 1": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=504,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a03",
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - North Spur Sluiceway Treasure 2": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=505,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a03",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - North Spur Sluiceway Treasure 3": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=506,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a03",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - North Spur Sluiceway Treasure 4": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=507,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a03",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - North Spur Sluiceway Treasure 5": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=508,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a03",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - North Spur Sluiceway Treasure 6": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=509,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a03",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - North Spur Sluiceway Treasure 7": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=510,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a03",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - North Spur Sluiceway Treasure 8": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=511,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a03",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - Northern Sluiceway Treasure 1": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=512,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a05",
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - Northern Sluiceway Treasure 2": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=513,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a05",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - Northern Sluiceway Treasure 3": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=514,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a05",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - Northern Sluiceway Treasure 4": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=515,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a05",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - Northern Sluiceway Treasure 5": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=516,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a05",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - Northern Sluiceway Treasure 6": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=517,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a05",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - East Waterway Control Treasure 1": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=518,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a06",
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - East Waterway Control Treasure 2": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=519,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a06",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - East Waterway Control Treasure 3": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=520,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a06",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - East Waterway Control Treasure 4": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=521,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_a06",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 11 Channel (water is drained) Treasure 1": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=522,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e02",
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 11 Channel (water is drained) Treasure 2": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=523,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 11 Channel (water is drained) Treasure 3": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=524,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 11 Channel (water is drained) Treasure 4": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=525,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 11 Channel (water is drained) Treasure 5": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=526,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e02",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 11 Channel (water is drained) Treasure 6": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=527,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e02",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 10 Channel (water is drained) Treasure 1": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=528,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e07",
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 10 Channel (water is drained) Treasure 2": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=529,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e07",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 10 Channel (water is drained) Treasure 3": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=530,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e07",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 10 Channel (water is drained) Treasure 4": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=531,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e07",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 10 Channel (water is drained) Treasure 5": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=532,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e07",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 3 Cloaca Spur (water is drained) Treasure 1": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=533,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e09",
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 3 Cloaca Spur (water is drained) Treasure 2": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=534,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e09",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 3 Cloaca Spur (water is drained) Treasure 3": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=535,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e09",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 4 Cloaca Spur (water is drained) Treasure 1": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=536,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e12",
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 4 Cloaca Spur (water is drained) Treasure 2": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=537,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e12",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - No. 4 Cloaca Spur (water is drained) Treasure 3": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=538,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="grm_e12",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 1": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=539,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 2": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=540,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 3": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=541,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 4": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=542,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 5": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=543,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 6": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=544,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 7": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=545,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 8": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=546,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 9": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=547,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 10": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=548,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 11": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=549,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=10,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 12": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=550,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=11,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Phase 1 Dig Treasure 13": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=551,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a04",
|
|
secondary_index=12,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Crossover A Treasure 1": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=552,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a05",
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Crossover A Treasure 2": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=553,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a05",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Crossover A Treasure 3": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=554,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a05",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines - Crossover A Treasure 4": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=555,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_a05",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 1": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=556,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 2": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=557,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 3": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=558,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 4": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=559,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=3,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 5": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=560,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=4,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 6": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=561,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=5,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 7": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=562,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=6,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 8": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=563,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=7,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 9": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=564,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=8,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 10": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=565,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=9,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 11": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=566,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=10,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 12": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=567,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=11,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 13": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=568,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=12,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 14": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=569,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=13,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Phase 2 Dig Treasure 15": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=570,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c01",
|
|
secondary_index=14,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Crossover C Treasure 1": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=571,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c02",
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Crossover C Treasure 2": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=572,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c02",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Crossover C Treasure 3": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=573,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c02",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Crossover C Treasure 4": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=574,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c02",
|
|
secondary_index=3,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Crossover C Treasure 5": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=575,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c02",
|
|
secondary_index=4,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Crossover C Treasure 6": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=576,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c02",
|
|
secondary_index=5,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Crossover C Treasure 7": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=577,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c02",
|
|
secondary_index=6,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Crossover C Treasure 8": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=578,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_c02",
|
|
secondary_index=7,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 1": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=579,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 2": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=580,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 3": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=581,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 4": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=582,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=3,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 5": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=583,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=4,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 6": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=584,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=5,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 7": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=585,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=6,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 8": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=586,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=7,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 9": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=587,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=8,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 10": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=588,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=9,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 11": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=589,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=10,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 12": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=590,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=11,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 13": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=591,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=12,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 14": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=592,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=13,
|
|
difficulty=8
|
|
),
|
|
"Henne Mines Deep - Special Charter Shaft Treasure 15": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=593,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="hne_d01",
|
|
secondary_index=14,
|
|
difficulty=8
|
|
),
|
|
"Lhusu Mines - Shaft Entry Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=594,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a01",
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Shaft Entry Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=595,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Shaft Entry Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=596,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Shaft Entry Treasure 4": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=597,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Shaft Entry Treasure 5": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=598,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Shaft Entry Treasure 6": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=599,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Oltam Span Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=600,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a02",
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Oltam Span Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=601,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Oltam Span Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=602,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Transitway 1 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=603,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a03",
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Transitway 1 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=604,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Transitway 1 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=605,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_a03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Shunia Twinspan Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=606,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b01",
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Shunia Twinspan Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=607,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Shunia Twinspan Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=608,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Lhusu Mines - Site 3 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=609,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b03",
|
|
difficulty=5
|
|
),
|
|
"Lhusu Mines - Site 3 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=610,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b03",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Lhusu Mines - Site 3 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=611,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b03",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Lhusu Mines - Site 3 Treasure 4": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=612,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b03",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Lhusu Mines - Site 3 Treasure 5": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=613,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b03",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Lhusu Mines - Site 3 Treasure 6": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=614,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b03",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Lhusu Mines - Site 3 Treasure 7": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=615,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b03",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Lhusu Mines - Site 3 Treasure 8": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=616,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_b03",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Lhusu Mines - Site 9 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=617,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d01",
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 9 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=618,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d01",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 9 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=619,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d01",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 9 Treasure 4": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=620,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d01",
|
|
secondary_index=3,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 9 Treasure 5": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=621,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d01",
|
|
secondary_index=4,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 9 Treasure 6": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=622,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d01",
|
|
secondary_index=5,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 9 Treasure 7": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=623,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d01",
|
|
secondary_index=6,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 11 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=624,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d03",
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 11 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=625,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d03",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 11 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=626,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d03",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 11 Treasure 4": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=627,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d03",
|
|
secondary_index=3,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 11 Treasure 5": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=628,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d03",
|
|
secondary_index=4,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 11 Treasure 6": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=629,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d03",
|
|
secondary_index=5,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 11 Treasure 7": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=630,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_d03",
|
|
secondary_index=6,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 7 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=631,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_e01",
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Lasche Span Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=632,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f01",
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=633,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=634,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=635,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 4": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=636,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=3,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 5": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=637,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=4,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 6": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=638,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=5,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 7": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=639,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=6,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 8": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=640,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=7,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 9": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=641,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=8,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 10": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=642,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=9,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 11": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=643,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=10,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 5 Treasure 12": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=644,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f02",
|
|
secondary_index=11,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 6 South Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=645,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f03",
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 6 South Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=646,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f03",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 6 South Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=647,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f03",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 6 South Treasure 4": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=648,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f03",
|
|
secondary_index=3,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 6 South Treasure 5": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=649,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f03",
|
|
secondary_index=4,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 6 North Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=650,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f04",
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Site 6 North Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=651,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f04",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Lhusu Mines - Staging Area Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=652,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="lus_f05",
|
|
difficulty=6
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 1": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=653,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 2": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=654,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 3": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=655,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 4": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=656,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 5": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=657,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 6": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=658,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 7": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=659,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 8": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=660,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 9": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=661,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 10": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=662,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Flitting Rifts Treasure 11": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=663,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a01",
|
|
secondary_index=10,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 1": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=664,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 2": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=665,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 3": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=666,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 4": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=667,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 5": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=668,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 6": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=669,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 7": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=670,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 8": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=671,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 9": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=672,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Stolen Truths Treasure 10": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=673,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a02",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 1": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=674,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 2": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=675,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 3": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=676,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 4": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=677,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 5": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=678,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 6": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=679,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 7": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=680,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 8": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=681,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 9": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=682,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 10": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=683,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Walk of Dancing Shadow Treasure 11": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=684,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a03",
|
|
secondary_index=10,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Antiquity's End Treasure 1": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=685,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_a04",
|
|
difficulty=3
|
|
),
|
|
"Feywood - Redolent Glade Treasure 1": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=686,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_b01",
|
|
difficulty=3
|
|
),
|
|
"Feywood - Redolent Glade Treasure 2": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=687,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_b01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Feywood - White Magick's Embrace Treasure 1": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=688,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c01",
|
|
difficulty=3
|
|
),
|
|
"Feywood - White Magick's Embrace Treasure 2": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=689,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Feywood - White Magick's Embrace Treasure 3": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=690,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Feywood - White Magick's Embrace Treasure 4": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=691,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c01",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Feywood - White Magick's Embrace Treasure 5": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=692,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c01",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Feywood - White Magick's Embrace Treasure 6": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=693,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c01",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Feywood - White Magick's Embrace Treasure 7": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=694,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c01",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Feywood - White Magick's Embrace Treasure 8": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=695,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c01",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Feywood - White Magick's Embrace Treasure 9": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=696,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c01",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 1": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=697,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 2": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=698,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 3": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=699,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 4": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=700,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 5": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=701,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 6": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=702,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 7": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=703,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 8": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=704,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 9": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=705,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 10": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=706,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 11": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=707,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=10,
|
|
difficulty=3
|
|
),
|
|
"Feywood - Ice Field of Clearsight Treasure 12": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=708,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c02",
|
|
secondary_index=11,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 1": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=709,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 2": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=710,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 3": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=711,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 4": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=712,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 5": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=713,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 6": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=714,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 7": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=715,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 8": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=716,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 9": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=717,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 10": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=718,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Feywood - The Edge of Reason Treasure 11": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=719,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mfr_c03",
|
|
secondary_index=10,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Lightworks Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=720,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a01",
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Lightworks Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=721,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Lightworks Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=722,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Eastern Passage Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=723,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a02",
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Eastern Passage Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=724,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a02",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Eastern Passage Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=725,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a02",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Eastern Passage Treasure 4": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=726,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a02",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Eastern Passage Treasure 5": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=727,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a02",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Eastern Passage Treasure 6": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=728,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a02",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Eastern Passage Treasure 7": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=729,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a02",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 36 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=730,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a03",
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 36 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=731,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a03",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 36 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=732,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a03",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Special Op Sector 3 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=733,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a04",
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Special Op Sector 3 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=734,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a04",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Special Op Sector 3 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=735,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a04",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 37 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=736,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a05",
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 37 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=737,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a05",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 37 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=738,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a05",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 37 Treasure 4": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=739,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a05",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 37 Treasure 5": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=740,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a05",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 29 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=741,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a06",
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 29 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=742,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a06",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Op Sector 29 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=743,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_a06",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Central Passage Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=744,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b01",
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Central Passage Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=745,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Central Passage Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=746,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Great Central Passage Treasure 4": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=747,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b01",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Zeviah Subterrane Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=748,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b02",
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Zeviah Subterrane Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=749,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b02",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Zeviah Subterrane Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=750,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b02",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Zeviah Subterrane Treasure 4": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=751,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b02",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Zeviah Subterrane Treasure 5": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=752,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b02",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Zeviah Subterrane Treasure 6": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=753,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b02",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Zeviah Subterrane Treasure 7": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=754,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b02",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Zeviah Subterrane Treasure 8": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=755,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b02",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - The Zeviah Subterrane Treasure 9": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=756,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_b02",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Terminus No. 7 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=757,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_d01",
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Terminus No. 7 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=758,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_d01",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - East-West Bypass Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=759,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e01",
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - East-West Bypass Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=760,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e01",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - East-West Bypass Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=761,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e01",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - East-West Bypass Treasure 4": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=762,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e01",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - East-West Bypass Treasure 5": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=763,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e01",
|
|
secondary_index=4,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=764,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=765,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=766,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 4": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=767,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 5": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=768,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=4,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 6": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=769,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=5,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 7": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=770,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=6,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 8": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=771,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=7,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 9": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=772,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=8,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 10": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=773,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=9,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 11": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=774,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=10,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - The Zeviah Span Treasure 12": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=775,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e02",
|
|
secondary_index=11,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=776,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=777,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=778,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 4": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=779,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 5": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=780,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=4,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 6": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=781,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=5,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 7": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=782,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=6,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 8": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=783,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=7,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 9": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=784,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=8,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 10": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=785,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=9,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 11": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=786,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=10,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 12": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=787,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=11,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - West Annex Treasure 13": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=788,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e03",
|
|
secondary_index=12,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Terminus No. 7 Adjunct Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=789,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e04",
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Special Op Sector 5 Treasure 1": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=790,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e05",
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Special Op Sector 5 Treasure 2": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=791,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e05",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Special Op Sector 5 Treasure 3": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=792,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e05",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Special Op Sector 5 Treasure 4": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=793,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e05",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Special Op Sector 5 Treasure 5": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=794,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e05",
|
|
secondary_index=4,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Special Op Sector 5 Treasure 6": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=795,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e05",
|
|
secondary_index=5,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Special Op Sector 5 Treasure 7": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=796,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e05",
|
|
secondary_index=6,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Special Op Sector 5 Treasure 8": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=797,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mic_e05",
|
|
secondary_index=7,
|
|
difficulty=4
|
|
),
|
|
"Mosphoran Highwaste - Southern Skirts Treasure 1": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=798,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a01",
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Southern Skirts Treasure 2": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=799,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Southern Skirts Treasure 3": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=800,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Southern Skirts Treasure 4": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=801,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a01",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Southern Skirts Treasure 5": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=802,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a01",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Summit Path Treasure 1": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=803,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a02",
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Summit Path Treasure 2": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=804,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Summit Path Treasure 3": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=805,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Summit Path Treasure 4": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=806,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a02",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Summit Path Treasure 5": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=807,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a02",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Summit Path Treasure 6": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=808,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a02",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Summit Path Treasure 7": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=809,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_a02",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Rays of Ashen Light Treasure 1": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=810,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b01",
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Rays of Ashen Light Treasure 2": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=811,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Rays of Ashen Light Treasure 3": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=812,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Rays of Ashen Light Treasure 4": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=813,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b01",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Rays of Ashen Light Treasure 5": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=814,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b01",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Empyrean Way Treasure 1": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=815,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b02",
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Empyrean Way Treasure 2": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=816,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Empyrean Way Treasure 3": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=817,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Empyrean Way Treasure 4": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=818,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b02",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Empyrean Way Treasure 5": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=819,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b02",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste Upper - Skyreach Ridge Treasure 1": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=820,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b03",
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste Upper - Skyreach Ridge Treasure 2": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=821,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b03",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste Upper - Skyreach Ridge Treasure 3": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=822,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b03",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste Upper - Skyreach Ridge Treasure 4": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=823,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b03",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Trail of Sky-flung Stone Treasure 1": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=824,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b04",
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Trail of Sky-flung Stone Treasure 2": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=825,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b04",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Trail of Sky-flung Stone Treasure 3": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=826,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b04",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Trail of Sky-flung Stone Treasure 4": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=827,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b04",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Trail of Sky-flung Stone Treasure 5": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=828,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b04",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Northern Skirts Treasure 1": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=829,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b05",
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Northern Skirts Treasure 2": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=830,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b05",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Northern Skirts Treasure 3": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=831,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b05",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Northern Skirts Treasure 4": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=832,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b05",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Northern Skirts Treasure 5": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=833,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b05",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Northern Skirts Treasure 6": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=834,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b05",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Northern Skirts Treasure 7": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=835,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b05",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Northern Skirts Treasure 8": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=836,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b05",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Northern Skirts Treasure 9": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=837,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b05",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Halny Crossing Treasure 1": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=838,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b06",
|
|
difficulty=2
|
|
),
|
|
"Mosphoran Highwaste - Halny Crossing Treasure 2": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=839,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mnt_b06",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Sky Treasure 1": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=840,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_a01",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Sky Treasure 2": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=841,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_a01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Sky Treasure 3": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=842,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_a01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Mind Treasure 1": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=843,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_a02",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Cold Distance Treasure 1": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=844,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b02",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Prescience Treasure 1": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=845,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b03",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 1": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=846,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 2": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=847,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 3": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=848,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 4": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=849,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 5": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=850,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 6": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=851,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 7": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=852,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 8": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=853,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 9": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=854,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Walk of Reason Treasure 10": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=855,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_b04",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Ward of Steel Treasure 1": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=856,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_c01",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Ward of Velitation Treasure 1": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=857,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_d01",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Ward of Velitation Treasure 2": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=858,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_d01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Ward of Velitation Treasure 3": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=859,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_d01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Hall of Worth Treasure 1": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=860,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_e01",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Hall of Worth Treasure 2": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=861,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="mrm_e01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Ozmone Plain - Field of Fallen Wings Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=862,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a01",
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Fallen Wings Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=863,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Fallen Wings Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=864,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Fallen Wings Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=865,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Fallen Wings Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=866,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Fallen Wings Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=867,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Fallen Wings Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=868,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Fallen Wings Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=869,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a01",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Fallen Wings Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=870,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a01",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Switchback Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=871,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a02",
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Switchback Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=872,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Switchback Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=873,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Switchback Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=874,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Switchback Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=875,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Switchback Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=876,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a02",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Switchback Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=877,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a02",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Switchback Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=878,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a02",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=879,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=880,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=881,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=882,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=883,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=884,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=885,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=886,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=887,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 10": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=888,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Haulo Green Treasure 11": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=889,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_a03",
|
|
secondary_index=10,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Dagan Flats Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=890,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b01",
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Dagan Flats Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=891,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Dagan Flats Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=892,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Dagan Flats Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=893,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Dagan Flats Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=894,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Dagan Flats Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=895,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Dagan Flats Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=896,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Light Winds Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=897,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b02",
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - Field of Light Winds Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=898,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Greensnake Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=899,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b03",
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Greensnake Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=900,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Greensnake Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=901,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_b03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Shred Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=902,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_c01",
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Shred Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=903,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_c01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Shred Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=904,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_c01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Shred Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=905,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_c01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Shred Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=906,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_c01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Shred Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=907,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_c01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Shred Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=908,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_c01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Shred Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=909,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_c01",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Ozmone Plain - The Shred Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=910,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ozm_c01",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 1": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=911,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 2": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=912,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 3": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=913,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 4": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=914,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 5": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=915,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 6": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=916,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 7": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=917,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 8": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=918,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 9": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=919,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Head of the Silverflow Treasure 10": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=920,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a02",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Freezing Gorge Treasure 1": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=921,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a03",
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Freezing Gorge Treasure 2": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=922,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a03",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Freezing Gorge Treasure 3": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=923,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a03",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Freezing Gorge Treasure 4": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=924,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a03",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Freezing Gorge Treasure 5": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=925,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_a03",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Frozen Brook Treasure 1": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=926,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b01",
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Frozen Brook Treasure 2": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=927,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b01",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Frozen Brook Treasure 3": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=928,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b01",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Frozen Brook Treasure 4": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=929,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b01",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Frozen Brook Treasure 5": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=930,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b01",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Frozen Brook Treasure 6": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=931,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b01",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Frozen Brook Treasure 7": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=932,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b01",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Frozen Brook Treasure 8": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=933,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b01",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Icebound Flow Treasure 1": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=934,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b02",
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Icebound Flow Treasure 2": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=935,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Icebound Flow Treasure 3": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=936,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Icebound Flow Treasure 4": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=937,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b02",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Icebound Flow Treasure 5": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=938,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b02",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Icebound Flow Treasure 6": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=939,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b02",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Icebound Flow Treasure 7": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=940,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b02",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Icebound Flow Treasure 8": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=941,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b02",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 1": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=942,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 2": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=943,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 3": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=944,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 4": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=945,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 5": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=946,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 6": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=947,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 7": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=948,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 8": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=949,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 9": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=950,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Karydine Glacier Treasure 10": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=951,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_b03",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Path of the Firstfall Treasure 1": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=952,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c01",
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Spine of the Icewyrm Treasure 1": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=953,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c02",
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Spine of the Icewyrm Treasure 2": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=954,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c02",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Spine of the Icewyrm Treasure 3": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=955,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c02",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 1": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=956,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 2": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=957,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 3": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=958,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 4": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=959,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=3,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 5": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=960,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=4,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 6": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=961,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=5,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 7": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=962,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=6,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 8": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=963,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=7,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 9": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=964,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=8,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 10": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=965,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=9,
|
|
difficulty=2
|
|
),
|
|
"Paramina Rift - Silverflow's End Treasure 11": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=966,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pbc_c03",
|
|
secondary_index=10,
|
|
difficulty=2
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=967,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=968,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=969,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=970,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=971,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=972,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=973,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=974,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 9": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=975,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 10": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=976,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Uazcuff Hills Treasure 11": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=977,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a01",
|
|
secondary_index=10,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=978,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=979,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=980,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=981,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=982,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=983,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=984,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=985,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 9": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=986,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 10": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=987,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 11": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=988,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=10,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Sundered Earth Treasure 12": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=989,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a02",
|
|
secondary_index=11,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=990,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=991,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=992,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=993,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=994,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=995,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=996,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=997,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 9": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=998,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Highlands Treasure 10": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=999,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a03",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Fields of Eternity Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1000,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a04",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Fields of Eternity Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1001,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a04",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Fields of Eternity Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1002,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a04",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Fields of Eternity Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1003,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a04",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Fields of Eternity Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1004,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a04",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Fields of Eternity Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1005,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a04",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Fields of Eternity Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1006,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a04",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Fields of Eternity Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1007,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a04",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Fields of Eternity Treasure 9": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1008,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_a04",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1009,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1010,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1011,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1012,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1013,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1014,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1015,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1016,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 9": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1017,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Skytrail Treasure 10": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1018,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b01",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1019,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1020,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1021,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1022,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1023,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1024,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1025,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1026,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 9": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1027,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Realm of the Elder Dream Treasure 10": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1028,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b02",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1029,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1030,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1031,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1032,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1033,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1034,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1035,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1036,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 9": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1037,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - The Lost Way Treasure 10": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1038,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b03",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Garden of Life's Circle Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1039,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b04",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Garden of Life's Circle Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1040,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b04",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Garden of Life's Circle Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1041,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b04",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Garden of Life's Circle Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1042,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b04",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Garden of Life's Circle Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1043,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b04",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Garden of Life's Circle Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1044,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b04",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Garden of Life's Circle Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1045,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b04",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Garden of Life's Circle Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1046,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b04",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1047,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1048,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1049,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1050,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1051,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1052,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1053,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1054,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 9": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1055,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 10": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1056,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=9,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Oliphzak Rise Treasure 11": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1057,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="pla_b05",
|
|
secondary_index=10,
|
|
difficulty=3
|
|
),
|
|
"Pharos of Ridorana - The Wellspring Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1058,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_a01",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - The Wellspring Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1059,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_a01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Labyrinth Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1060,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_b01",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Labyrinth Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1061,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_b01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Labyrinth Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1062,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_b01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Labyrinth Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1063,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_b01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Labyrinth Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1064,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_b01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Labyrinth Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1065,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_b01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Labyrinth Treasure 7": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1066,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_b01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 1st Flight Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1067,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d01",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 1st Flight Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1068,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 1st Flight Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1069,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 1st Flight Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1070,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 1st Flight Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1071,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 1st Flight Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1072,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 1st Flight Treasure 7": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1073,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 2nd Flight Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1074,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d02",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 2nd Flight Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1075,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 2nd Flight Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1076,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 2nd Flight Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1077,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_d02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 3rd Flight Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1078,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_e01",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 3rd Flight Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1079,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_e01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 3rd Flight Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1080,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_e01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 3rd Flight Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1081,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_e01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 3rd Flight Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1082,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_e01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 3rd Flight Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1083,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_e01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 4th Flight Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1084,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_e02",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Wellspring Ravel - 4th Flight Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1085,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_e02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Horizon's Cusp Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1086,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_f02",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Horizon's Cusp Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1087,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_f02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Horizon's Cusp Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1088,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_f02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Horizon's Cusp Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1089,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_f02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana Subterra - Penumbra - North Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1090,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_g02",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Penumbra - North Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1091,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_g02",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Penumbra - North Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1092,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_g02",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Penumbra - North Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1093,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_g02",
|
|
secondary_index=3,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Penumbra - North Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1094,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_g02",
|
|
secondary_index=4,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Penumbra - South Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1095,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_g03",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Penumbra - South Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1096,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_g03",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Penumbra - South Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1097,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_g03",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - North Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1098,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h02",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - North Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1099,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h02",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - North Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1100,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h02",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - North Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1101,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h02",
|
|
secondary_index=3,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - South Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1102,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h03",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - South Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1103,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h03",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - South Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1104,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h03",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - South Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1105,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h03",
|
|
secondary_index=3,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - South Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1106,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h03",
|
|
secondary_index=4,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Umbra - South Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1107,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_h03",
|
|
secondary_index=5,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - North Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1108,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i02",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - North Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1109,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i02",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - North Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1110,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i02",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - North Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1111,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i02",
|
|
secondary_index=3,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - North Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1112,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i02",
|
|
secondary_index=4,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - North Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1113,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i02",
|
|
secondary_index=5,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - North Treasure 7": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1114,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i02",
|
|
secondary_index=6,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - North Treasure 8": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1115,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i02",
|
|
secondary_index=7,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - North Treasure 9": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1116,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i02",
|
|
secondary_index=8,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - South Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1117,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i03",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - South Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1118,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i03",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - South Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1119,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i03",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - South Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1120,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i03",
|
|
secondary_index=3,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - South Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1121,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i03",
|
|
secondary_index=4,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - South Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1122,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i03",
|
|
secondary_index=5,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - South Treasure 7": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1123,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i03",
|
|
secondary_index=6,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - South Treasure 8": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1124,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i03",
|
|
secondary_index=7,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Abyssal - South Treasure 9": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1125,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_i03",
|
|
secondary_index=8,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana - The Bounds of Truth Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1126,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_j02",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - The Bounds of Truth Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1127,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_j02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - The Bounds of Truth Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1128,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_j02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - The Bounds of Truth Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1129,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_j02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Banishment Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1130,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_k01",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Banishment Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1131,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_k01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Banishment Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1132,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_k01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Banishment Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1133,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_k01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Banishment Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1134,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_k01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Banishment Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1135,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_k01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Banishment Treasure 7": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1136,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_k01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Banishment Treasure 8": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1137,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_k01",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Banishment Treasure 9": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1138,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_k01",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Suffering Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1139,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_l01",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Suffering Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1140,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_l01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Suffering Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1141,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_l01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Suffering Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1142,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_l01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Suffering Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1143,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_l01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Suffering Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1144,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_l01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Suffering Treasure 7": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1145,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_l01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1146,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1147,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1148,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1149,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1150,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1151,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 7": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1152,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 8": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1153,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 9": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1154,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Station of Ascension Treasure 10": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1155,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_m01",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 1st Flight Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1156,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n01",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 1st Flight Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1157,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 1st Flight Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1158,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 1st Flight Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1159,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 1st Flight Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1160,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 2nd Flight Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1161,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n02",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 2nd Flight Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1162,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 2nd Flight Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1163,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 2nd Flight Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1164,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 2nd Flight Treasure 5": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1165,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n02",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Spire Ravel - 2nd Flight Treasure 6": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1166,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_n02",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Empyrean Ravel Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1167,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_q01",
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Empyrean Ravel Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1168,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_q01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Empyrean Ravel Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1169,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_q01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Empyrean Ravel Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1170,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rbl_q01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Dreadnought Leviathan - Port Section Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1171,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b01",
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Port Section Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1172,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Port Section Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1173,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Port Section Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1174,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Large Freight Stores Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1175,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b02",
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Large Freight Stores Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1176,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Large Freight Stores Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1177,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Large Freight Stores Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1178,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Large Freight Stores Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1179,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Large Freight Stores Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1180,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b02",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Starboard Section Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1181,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b03",
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Starboard Section Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1182,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Starboard Section Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1183,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Starboard Section Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1184,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Starboard Section Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1185,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Starboard Section Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1186,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Sub-control Room Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1187,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b04",
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Sub-control Room Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1188,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b04",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Sub-control Room Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1189,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b04",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Sub-control Room Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1190,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rsn_b04",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Sochen Cave Palace Middle - Falls of Time Treasure 1": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1191,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a01",
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Falls of Time Treasure 2": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1192,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Falls of Time Treasure 3": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1193,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Falls of Time Treasure 4": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1194,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a01",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Falls of Time Treasure 5": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1195,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a01",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Falls of Time Treasure 6": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1196,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a01",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Falls of Time Treasure 7": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1197,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a01",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Falls of Time Treasure 8": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1198,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a01",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Mirror of the Soul Treasure 1": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1199,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a02",
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Mirror of the Soul Treasure 2": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1200,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a02",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Mirror of the Soul Treasure 3": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1201,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a02",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Mirror of the Soul Treasure 4": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1202,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a02",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Mirror of the Soul Treasure 5": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1203,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a02",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Mirror of the Soul Treasure 6": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1204,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a02",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Mirror of the Soul Treasure 7": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1205,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a02",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Mirror of the Soul Treasure 8": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1206,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a02",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - The Acolyte's Burden Treasure 1": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1207,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a03",
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - The Acolyte's Burden Treasure 2": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1208,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a03",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace S - Doubt Abandoned Treasure 1": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace S",
|
|
address=1209,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a04",
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace S - Doubt Abandoned Treasure 2": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace S",
|
|
address=1210,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a04",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace S - Doubt Abandoned Treasure 3": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace S",
|
|
address=1211,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a04",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace S - Doubt Abandoned Treasure 4": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace S",
|
|
address=1212,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a04",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace S - Doubt Abandoned Treasure 5": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace S",
|
|
address=1213,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a04",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace S - Doubt Abandoned Treasure 6": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace S",
|
|
address=1214,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a04",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace S - Doubt Abandoned Treasure 7": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace S",
|
|
address=1215,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a04",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace S - Doubt Abandoned Treasure 8": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace S",
|
|
address=1216,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a04",
|
|
secondary_index=7,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace S - Doubt Abandoned Treasure 9": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace S",
|
|
address=1217,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_a04",
|
|
secondary_index=8,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Destiny's March Treasure 1": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1218,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b01",
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Destiny's March Treasure 2": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1219,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Destiny's March Treasure 3": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1220,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Destiny's March Treasure 4": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1221,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b01",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Destiny's March Treasure 5": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1222,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b01",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Destiny's March Treasure 6": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1223,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b01",
|
|
secondary_index=5,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Destiny's March Treasure 7": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1224,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b01",
|
|
secondary_index=6,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Temptation Eluded Treasure 1": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1225,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b02",
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Temptation Eluded Treasure 2": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1226,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b02",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Temptation Eluded Treasure 3": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1227,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b02",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Temptation Eluded Treasure 4": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1228,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_b02",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of Shadowlight Treasure 1": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1229,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_c01",
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of Shadowlight Treasure 2": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1230,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_c01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of Shadowlight Treasure 3": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1231,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_c01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of Shadowlight Treasure 4": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1232,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_c01",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of Shadowlight Treasure 5": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1233,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_c01",
|
|
secondary_index=4,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of Lambent Darkness Treasure 1": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1234,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_d01",
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of Lambent Darkness Treasure 2": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1235,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_d01",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of Lambent Darkness Treasure 3": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1236,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_d01",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of Lambent Darkness Treasure 4": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1237,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_d01",
|
|
secondary_index=3,
|
|
difficulty=3
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of the Wroth God Treasure 1": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1238,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_e01",
|
|
difficulty=8
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of the Wroth God Treasure 2": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1239,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_e01",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of the Wroth God Treasure 3": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1240,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_e01",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Sochen Cave Palace Middle - Hall of the Wroth God Treasure 4": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=1241,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rui_e01",
|
|
secondary_index=3,
|
|
difficulty=8
|
|
),
|
|
"Ridorana Cataract - Echoes from Time's Garden Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1242,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_a03",
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Echoes from Time's Garden Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1243,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_a03",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Echoes from Time's Garden Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1244,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_a03",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Echoes from Time's Garden Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1245,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_a03",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Echoes from Time's Garden Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1246,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_a03",
|
|
secondary_index=4,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Echoes from Time's Garden Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1247,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_a03",
|
|
secondary_index=5,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Echoes from Time's Garden Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1248,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_a03",
|
|
secondary_index=6,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Echoes from Time's Garden Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1249,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_a03",
|
|
secondary_index=7,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Echoes from Time's Garden Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1250,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_a03",
|
|
secondary_index=8,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - City of Other Days Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1251,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b01",
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - City of Other Days Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1252,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b01",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - City of Other Days Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1253,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b01",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - City of Other Days Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1254,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b01",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - City of Other Days Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1255,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b01",
|
|
secondary_index=4,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - City of Other Days Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1256,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b01",
|
|
secondary_index=5,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - City of Other Days Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1257,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b01",
|
|
secondary_index=6,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - City of Other Days Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1258,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b01",
|
|
secondary_index=7,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - City of Other Days Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1259,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b01",
|
|
secondary_index=8,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Path of Hidden Blessing Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1260,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_b02",
|
|
difficulty=4
|
|
),
|
|
"Pharos of Ridorana - They Who Thirst Not Treasure 1": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1261,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_c01",
|
|
difficulty=4
|
|
),
|
|
"Pharos of Ridorana - They Who Thirst Not Treasure 2": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1262,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_c01",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Pharos of Ridorana - They Who Thirst Not Treasure 3": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1263,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_c01",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Pharos of Ridorana - They Who Thirst Not Treasure 4": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1264,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_c01",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 1": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1265,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 2": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1266,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 3": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1267,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 4": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1268,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
secondary_index=3,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 5": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1269,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
secondary_index=4,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 6": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1270,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
secondary_index=5,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 7": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1271,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
secondary_index=6,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 8": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1272,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
secondary_index=7,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 9": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1273,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
secondary_index=8,
|
|
difficulty=4
|
|
),
|
|
"Ridorana Cataract - Colosseum Treasure 10": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=1274,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwf_d01",
|
|
secondary_index=9,
|
|
difficulty=4
|
|
),
|
|
"Tomb of Raithwall - Royal Passage Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1275,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c01",
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Royal Passage Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1276,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Royal Passage Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1277,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Royal Passage Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1278,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Royal Passage Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1279,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Southfall Passage Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1280,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c02",
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Southfall Passage Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1281,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Southfall Passage Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1282,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Southfall Passage Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1283,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Southfall Passage Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1284,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Southfall Passage Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1285,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c02",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Southfall Passage Treasure 7": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1286,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c02",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Southfall Passage Treasure 8": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1287,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c02",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Northfall Passage Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1288,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c03",
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Northfall Passage Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1289,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Northfall Passage Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1290,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Northfall Passage Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1291,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Northfall Passage Treasure 5": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1292,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Northfall Passage Treasure 6": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1293,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_c03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Cloister of Flame Treasure 1": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1294,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_d01",
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Cloister of Flame Treasure 2": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1295,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_d01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Cloister of Flame Treasure 3": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1296,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_d01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Cloister of Flame Treasure 4": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1297,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="rwg_d01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Throne Road Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1298,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a01",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Throne Road Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1299,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Throne Road Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1300,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Throne Road Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1301,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Throne Road Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1302,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Throne Road Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1303,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Throne Road Treasure 7": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1304,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Warrior's Wash Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1305,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a02",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Warrior's Wash Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1306,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Warrior's Wash Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1307,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Warrior's Wash Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1308,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Warrior's Wash Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1309,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Warrior's Wash Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1310,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a02",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Warrior's Wash Treasure 7": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1311,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a02",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas North Bank Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1312,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a03",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas North Bank Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1313,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas North Bank Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1314,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas North Bank Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1315,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas North Bank Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1316,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas North Bank Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1317,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas North Bank Treasure 7": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1318,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a03",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Toam Hills Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1319,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a04",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Toam Hills Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1320,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a04",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Toam Hills Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1321,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a04",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Toam Hills Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1322,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a04",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Toam Hills Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1323,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a04",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Toam Hills Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1324,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a04",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Toam Hills Treasure 7": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1325,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_a04",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1326,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1327,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1328,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1329,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1330,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1331,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 7": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1332,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 8": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1333,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 9": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1334,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 10": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1335,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Starfall Field Treasure 11": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1336,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c01",
|
|
secondary_index=10,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas South Bank Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1337,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c03",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas South Bank Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1338,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas South Bank Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1339,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas South Bank Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1340,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas South Bank Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1341,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Gizas South Bank Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1342,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_c03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Throne Road Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1343,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d01",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Throne Road Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1344,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Throne Road Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1345,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Throne Road Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1346,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Warrior's Wash Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1347,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d02",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Warrior's Wash Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1348,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Warrior's Wash Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1349,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Warrior's Wash Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1350,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Warrior's Wash Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1351,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Warrior's Wash Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1352,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d02",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas North Bank Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1353,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d03",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas North Bank Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1354,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas North Bank Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1355,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas North Bank Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1356,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas North Bank Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1357,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Toam Hills Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1358,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d04",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Toam Hills Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1359,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d04",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Toam Hills Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1360,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d04",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Toam Hills Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1361,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d04",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Toam Hills Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1362,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d04",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Toam Hills Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1363,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_d04",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Nomad Village Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1364,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_e01",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Starfall Field Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1365,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f01",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Starfall Field Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1366,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Starfall Field Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1367,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Starfall Field Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1368,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Starfall Field Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1369,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Starfall Field Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1370,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Starfall Field Treasure 7": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1371,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas South Bank Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1372,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f03",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas South Bank Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1373,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas South Bank Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1374,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas South Bank Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1375,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas South Bank Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1376,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Gizas South Bank Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1377,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_f03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Tracks of the Beast Treasure 1": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1378,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_g01",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Tracks of the Beast Treasure 2": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1379,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_g01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Tracks of the Beast Treasure 3": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1380,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_g01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Tracks of the Beast Treasure 4": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1381,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_g01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Tracks of the Beast Treasure 5": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1382,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_g01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Tracks of the Beast Treasure 6": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1383,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_g01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Rains - Tracks of the Beast Treasure 7": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1384,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="sav_g01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - North Sprawl Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1385,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a01",
|
|
difficulty=1
|
|
),
|
|
"Lowtown - North Sprawl Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1386,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - North Sprawl Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1387,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - North Sprawl Treasure 4": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1388,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - North Sprawl Treasure 5": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1389,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - North Sprawl Treasure 6": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1390,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - South Sprawl Treasure 1": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1391,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a02",
|
|
difficulty=1
|
|
),
|
|
"Lowtown - South Sprawl Treasure 2": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1392,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - South Sprawl Treasure 3": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1393,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - South Sprawl Treasure 4": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1394,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - South Sprawl Treasure 5": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1395,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="slm_a02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 1": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1396,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 2": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1397,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 3": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1398,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 4": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1399,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 5": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1400,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 6": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1401,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 7": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1402,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 8": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1403,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 9": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1404,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 10": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1405,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 11": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1406,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=10,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 12": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1407,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=11,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 13": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1408,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=12,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 14": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1409,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=13,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 15": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1410,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=14,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Old Elanise Road Treasure 16": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1411,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a01",
|
|
secondary_index=15,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 1": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1412,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 2": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1413,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 3": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1414,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 4": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1415,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 5": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1416,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 6": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1417,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 7": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1418,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 8": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1419,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 9": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1420,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 10": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1421,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 11": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1422,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=10,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 12": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1423,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=11,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 13": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1424,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=12,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Crossfield Treasure 14": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1425,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a02",
|
|
secondary_index=13,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 1": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1426,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 2": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1427,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 3": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1428,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 4": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1429,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 5": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1430,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 6": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1431,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 7": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1432,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 8": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1433,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 9": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1434,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 10": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1435,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 11": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1436,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=10,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 12": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1437,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=11,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 13": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1438,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=12,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Terraced Bank Treasure 14": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1439,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_a03",
|
|
secondary_index=13,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 1": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1440,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 2": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1441,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 3": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1442,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 4": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1443,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 5": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1444,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 6": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1445,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 7": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1446,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 8": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1447,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 9": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1448,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 10": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1449,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 11": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1450,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=10,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 12": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1451,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=11,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - North Liavell Hills Treasure 13": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1452,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b01",
|
|
secondary_index=12,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 1": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1453,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 2": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1454,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 3": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1455,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 4": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1456,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 5": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1457,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 6": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1458,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 7": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1459,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 8": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1460,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 9": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1461,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 10": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1462,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 11": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1463,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=10,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 12": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1464,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=11,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 13": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1465,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=12,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 14": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1466,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=13,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - South Liavell Hills Treasure 15": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1467,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b02",
|
|
secondary_index=14,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 1": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1468,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 2": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1469,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 3": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1470,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 4": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1471,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 5": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1472,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 6": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1473,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 7": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1474,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 8": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1475,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 9": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1476,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 10": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1477,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 11": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1478,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=10,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 12": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1479,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=11,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 13": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1480,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=12,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 14": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1481,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=13,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Feddik River Treasure 15": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1482,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b03",
|
|
secondary_index=14,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 1": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1483,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 2": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1484,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 3": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1485,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 4": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1486,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 5": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1487,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 6": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1488,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 7": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1489,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 8": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1490,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 9": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1491,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 10": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1492,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=9,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 11": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1493,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=10,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 12": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1494,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=11,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 13": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1495,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=12,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - The Northsward Treasure 14": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=1496,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="srb_b04",
|
|
secondary_index=13,
|
|
difficulty=5
|
|
),
|
|
"Balfonheim - Sea Breeze Lane Treasure 1": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1497,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="var_a01",
|
|
difficulty=1
|
|
),
|
|
"Balfonheim - Sea Breeze Lane Treasure 2": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1498,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="var_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Balfonheim - Sea Breeze Lane Treasure 3": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1499,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="var_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Balfonheim - Port Villa West Treasure 1": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1500,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="var_a13",
|
|
difficulty=1
|
|
),
|
|
"Balfonheim - The Whitecap Treasure 1": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1501,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="var_a14",
|
|
difficulty=1
|
|
),
|
|
"Balfonheim - Port Villa East Treasure 1": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1502,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="var_a15",
|
|
difficulty=1
|
|
),
|
|
"Eruyt Village - Fane of the Path Treasure 1": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1503,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="vic_a01",
|
|
difficulty=1
|
|
),
|
|
"Eruyt Village - The Spiritwood Treasure 1": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1504,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="vic_a02",
|
|
difficulty=1
|
|
),
|
|
"Eruyt Village - The Spiritwood Treasure 2": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1505,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="vic_a02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Galtea Downs Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1506,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a01",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Galtea Downs Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1507,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a01",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Galtea Downs Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1508,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a01",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Galtea Downs Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1509,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a01",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Galtea Downs Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1510,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a01",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Galtea Downs Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1511,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a01",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Galtea Downs Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1512,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a01",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Galtea Downs Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1513,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a01",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Corridor of Sand Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1514,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a02",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Corridor of Sand Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1515,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a02",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Corridor of Sand Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1516,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a02",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Corridor of Sand Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1517,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a02",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Corridor of Sand Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1518,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a02",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Corridor of Sand Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1519,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a02",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Corridor of Sand Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1520,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a02",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Corridor of Sand Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1521,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a02",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Corridor of Sand Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1522,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a02",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1523,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1524,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1525,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1526,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1527,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1528,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1529,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1530,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1531,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 10": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1532,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=9,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Shimmering Horizons Treasure 11": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1533,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a03",
|
|
secondary_index=10,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - The Midfault Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1534,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a04",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - The Midfault Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1535,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a04",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - The Midfault Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1536,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a04",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - The Midfault Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1537,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a04",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - The Midfault Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1538,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a04",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - The Midfault Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1539,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a04",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - The Midfault Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1540,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a04",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - The Midfault Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1541,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a04",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - The Midfault Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1542,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a04",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Windtrace Dunes Treasure 1": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1543,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a05",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Windtrace Dunes Treasure 2": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1544,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a05",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Windtrace Dunes Treasure 3": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1545,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a05",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Windtrace Dunes Treasure 4": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1546,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a05",
|
|
secondary_index=3,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Windtrace Dunes Treasure 5": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1547,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a05",
|
|
secondary_index=4,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Windtrace Dunes Treasure 6": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1548,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a05",
|
|
secondary_index=5,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Windtrace Dunes Treasure 7": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1549,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a05",
|
|
secondary_index=6,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Windtrace Dunes Treasure 8": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1550,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a05",
|
|
secondary_index=7,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Windtrace Dunes Treasure 9": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=1551,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="wdl_a05",
|
|
secondary_index=8,
|
|
difficulty=1
|
|
),
|
|
"Zertinan Caverns NE - Invitation to Heresy Treasure 1": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=1552,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a01",
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Invitation to Heresy Treasure 2": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=1553,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Invitation to Heresy Treasure 3": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=1554,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Invitation to Heresy Treasure 4": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=1555,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Invitation to Heresy Treasure 5": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=1556,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Invitation to Heresy Treasure 6": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=1557,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a01",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Invitation to Heresy Treasure 7": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=1558,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a01",
|
|
secondary_index=6,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Invitation to Heresy Treasure 8": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=1559,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a01",
|
|
secondary_index=7,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Invitation to Heresy Treasure 9": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=1560,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a01",
|
|
secondary_index=8,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Hourglass Basin Treasure 1": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1561,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a03",
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Hourglass Basin Treasure 2": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1562,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a03",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Hourglass Basin Treasure 3": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1563,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a03",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Hourglass Basin Treasure 4": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1564,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_a03",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - The Undershore Treasure 1": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1565,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b01",
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - The Undershore Treasure 2": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1566,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b01",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - The Undershore Treasure 3": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1567,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b01",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - The Undershore Treasure 4": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1568,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b01",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - The Undershore Treasure 5": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1569,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b01",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns S - Halls of Ardent Darkness Treasure 1": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns S",
|
|
address=1570,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b02",
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns S - Halls of Ardent Darkness Treasure 2": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns S",
|
|
address=1571,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns S - Halls of Ardent Darkness Treasure 3": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns S",
|
|
address=1572,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns S - Halls of Ardent Darkness Treasure 4": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns S",
|
|
address=1573,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns S - Halls of Ardent Darkness Treasure 5": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns S",
|
|
address=1574,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b02",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns S - Halls of Ardent Darkness Treasure 6": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns S",
|
|
address=1575,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_b02",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Drybeam Cavern Treasure 1": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1576,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c02",
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Drybeam Cavern Treasure 2": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1577,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c02",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Drybeam Cavern Treasure 3": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1578,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c02",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Drybeam Cavern Treasure 4": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1579,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c02",
|
|
secondary_index=3,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Drybeam Cavern Treasure 5": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1580,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c02",
|
|
secondary_index=4,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Drybeam Cavern Treasure 6": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1581,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c02",
|
|
secondary_index=5,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Darkened Wharf Treasure 1": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1582,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c03",
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Darkened Wharf Treasure 2": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1583,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c03",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Darkened Wharf Treasure 3": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=1584,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c03",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Connector N - Canopy of Clay Treasure 1": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Connector N",
|
|
address=1585,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="treasure",
|
|
str_id="ztc_c04",
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Tomaj 1 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1586,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9000"
|
|
),
|
|
"Rabanastre - Tomaj 1 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1587,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9000",
|
|
secondary_index=1
|
|
),
|
|
"Rabanastre - Tomaj 1 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1588,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9000",
|
|
secondary_index=2
|
|
),
|
|
"Rabanastre - Tomaj 2 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1589,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916B"
|
|
),
|
|
"Rabanastre - Tomaj 2 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1590,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916B",
|
|
secondary_index=1
|
|
),
|
|
"Rabanastre - Tomaj 2 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1591,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916B",
|
|
secondary_index=2
|
|
),
|
|
"Rabanastre - Tomaj 3 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1592,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916C"
|
|
),
|
|
"Rabanastre - Tomaj 3 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1593,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916C",
|
|
secondary_index=1
|
|
),
|
|
"Rabanastre - Tomaj 3 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1594,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916C",
|
|
secondary_index=2
|
|
),
|
|
"Giza Plains Dry - Masyua Shadestone Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1595,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9002"
|
|
),
|
|
"Giza Plains Dry - Masyua Shadestone Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1596,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9002",
|
|
secondary_index=1
|
|
),
|
|
"Giza Plains Dry - Masyua Shadestone Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1597,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9002",
|
|
secondary_index=2
|
|
),
|
|
"Giza Plains Dry - Giza Sunstone Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1598,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9001",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Giza Sunstone Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1599,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9001",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Giza Sunstone Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1600,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9001",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - Dalan Crescent Stone Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1601,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="905E"
|
|
),
|
|
"Lowtown - Dalan Crescent Stone Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1602,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="905E",
|
|
secondary_index=1
|
|
),
|
|
"Lowtown - Dalan Crescent Stone Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1603,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="905E",
|
|
secondary_index=2
|
|
),
|
|
"Lowtown - Dalan Sword of the Order Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1604,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="905F"
|
|
),
|
|
"Lowtown - Dalan Sword of the Order Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1605,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="905F",
|
|
secondary_index=1
|
|
),
|
|
"Lowtown - Dalan Sword of the Order Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1606,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="905F",
|
|
secondary_index=2
|
|
),
|
|
"Lowtown - Balzac Sword of the Order Turn In Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1607,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="911E"
|
|
),
|
|
"Lowtown - Balzac Sword of the Order Turn In Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1608,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="911E",
|
|
secondary_index=1
|
|
),
|
|
"Lowtown - Balzac Sword of the Order Turn In Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1609,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="911E",
|
|
secondary_index=2
|
|
),
|
|
"Dreadnought Leviathan - No. 1 Brig Key Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1610,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9060",
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - No. 1 Brig Key Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1611,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9060",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - No. 1 Brig Key Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1612,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9060",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Systems Access Key Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1613,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9061",
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Systems Access Key Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1614,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9061",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Systems Access Key Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1615,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9061",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Manufacted Nethicite Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1616,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912C",
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Manufacted Nethicite Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1617,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912C",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dreadnought Leviathan - Manufacted Nethicite Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dreadnought Leviathan",
|
|
address=1618,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912C",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Eksir Berries Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=1619,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912D",
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Eksir Berries Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=1620,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912D",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Nam-Yensa Sandsea - Eksir Berries Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=1621,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912D",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Tomb of Raithwall - Defeat Belias Reward (1)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1622,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9190",
|
|
difficulty=2
|
|
),
|
|
"Tomb of Raithwall - Defeat Belias Reward (2)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1623,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9190",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Tomb of Raithwall - Defeat Belias Reward (3)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1624,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9190",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Tomb of Raithwall - Dawn Shard Reward (1)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1625,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912E",
|
|
difficulty=2
|
|
),
|
|
"Tomb of Raithwall - Dawn Shard Reward (2)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1626,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912E",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Tomb of Raithwall - Dawn Shard Reward (3)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1627,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912E",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Tomb of Raithwall - Defeat Vossler Reward (1)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1628,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918E",
|
|
difficulty=2
|
|
),
|
|
"Tomb of Raithwall - Defeat Vossler Reward (2)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1629,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918E",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Tomb of Raithwall - Defeat Vossler Reward (3)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=1630,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918E",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Royal Palace - Goddess's Magicite Reward (1)": FF12OpenWorldLocationData(
|
|
region="Royal Palace",
|
|
address=1631,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912F",
|
|
difficulty=1
|
|
),
|
|
"Royal Palace - Goddess's Magicite Reward (2)": FF12OpenWorldLocationData(
|
|
region="Royal Palace",
|
|
address=1632,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912F",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Royal Palace - Goddess's Magicite Reward (3)": FF12OpenWorldLocationData(
|
|
region="Royal Palace",
|
|
address=1633,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="912F",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Barheim Passage Story - Burrough Tube Fuse Reward (1)": FF12OpenWorldLocationData(
|
|
region="Barheim Passage Story",
|
|
address=1634,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9130",
|
|
difficulty=1
|
|
),
|
|
"Barheim Passage Story - Burrough Tube Fuse Reward (2)": FF12OpenWorldLocationData(
|
|
region="Barheim Passage Story",
|
|
address=1635,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9130",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Barheim Passage Story - Burrough Tube Fuse Reward (3)": FF12OpenWorldLocationData(
|
|
region="Barheim Passage Story",
|
|
address=1636,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9130",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Jahara - Great-chief Elder After Defeating Vossler Reward (1)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1637,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="911F",
|
|
difficulty=2
|
|
),
|
|
"Jahara - Great-chief Elder After Defeating Vossler Reward (2)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1638,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="911F",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Jahara - Great-chief Elder After Defeating Vossler Reward (3)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1639,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="911F",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Eruyt Village - Lente's Tear Reward (1)": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1640,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9131",
|
|
difficulty=2
|
|
),
|
|
"Eruyt Village - Lente's Tear Reward (2)": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1641,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9131",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Eruyt Village - Lente's Tear Reward (3)": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1642,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9131",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Defeat Mateus Reward (1)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=1643,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9191",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Defeat Mateus Reward (2)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=1644,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9191",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Defeat Mateus Reward (3)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=1645,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9191",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Sword of Kings Reward (1)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=1646,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9132",
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Sword of Kings Reward (2)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=1647,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9132",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Stilshrine of Miriam - Sword of Kings Reward (3)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=1648,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9132",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Tchita Uplands - Soul Ward Key Reward (1)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1649,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9133",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Soul Ward Key Reward (2)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1650,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9133",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Soul Ward Key Reward (3)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1651,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9133",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Mandragora Reward Reward (1)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1652,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9052",
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Mandragora Reward Reward (2)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1653,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9052",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Tchita Uplands - Mandragora Reward Reward (3)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=1654,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9052",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Draklor Laboratory - Defeat Cid 1 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=1655,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918D",
|
|
difficulty=5
|
|
),
|
|
"Draklor Laboratory - Defeat Cid 1 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=1656,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918D",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Draklor Laboratory - Defeat Cid 1 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=1657,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918D",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Archades - Pinewood Chop 1 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1658,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9134"
|
|
),
|
|
"Archades - Pinewood Chop 1 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1659,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9134",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 1 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1660,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9134",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 2 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1661,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9135"
|
|
),
|
|
"Archades - Pinewood Chop 2 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1662,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9135",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 2 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1663,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9135",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 3 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1664,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9136"
|
|
),
|
|
"Archades - Pinewood Chop 3 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1665,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9136",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 3 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1666,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9136",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 4 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1667,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9137"
|
|
),
|
|
"Archades - Pinewood Chop 4 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1668,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9137",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 4 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1669,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9137",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 5 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1670,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9138"
|
|
),
|
|
"Archades - Pinewood Chop 5 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1671,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9138",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 5 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1672,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9138",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 6 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1673,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9139"
|
|
),
|
|
"Archades - Pinewood Chop 6 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1674,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9139",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 6 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1675,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9139",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 7 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1676,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913A"
|
|
),
|
|
"Archades - Pinewood Chop 7 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1677,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913A",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 7 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1678,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913A",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 8 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1679,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913B"
|
|
),
|
|
"Archades - Pinewood Chop 8 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1680,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913B",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 8 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1681,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913B",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 9 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1682,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913C"
|
|
),
|
|
"Archades - Pinewood Chop 9 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1683,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913C",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 9 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1684,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913C",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 10 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1685,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913D"
|
|
),
|
|
"Archades - Pinewood Chop 10 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1686,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913D",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 10 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1687,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913D",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 11 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1688,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913E"
|
|
),
|
|
"Archades - Pinewood Chop 11 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1689,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913E",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 11 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1690,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913E",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 12 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1691,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913F"
|
|
),
|
|
"Archades - Pinewood Chop 12 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1692,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913F",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 12 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1693,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="913F",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 13 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1694,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9140"
|
|
),
|
|
"Archades - Pinewood Chop 13 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1695,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9140",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 13 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1696,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9140",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 14 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1697,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9141"
|
|
),
|
|
"Archades - Pinewood Chop 14 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1698,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9141",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 14 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1699,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9141",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 15 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1700,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9142"
|
|
),
|
|
"Archades - Pinewood Chop 15 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1701,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9142",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 15 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1702,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9142",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 16 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1703,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9143"
|
|
),
|
|
"Archades - Pinewood Chop 16 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1704,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9143",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 16 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1705,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9143",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 17 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1706,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9144"
|
|
),
|
|
"Archades - Pinewood Chop 17 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1707,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9144",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 17 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1708,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9144",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 18 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1709,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9145"
|
|
),
|
|
"Archades - Pinewood Chop 18 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1710,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9145",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 18 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1711,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9145",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 19 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1712,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9146"
|
|
),
|
|
"Archades - Pinewood Chop 19 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1713,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9146",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 19 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1714,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9146",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 20 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1715,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9147"
|
|
),
|
|
"Archades - Pinewood Chop 20 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1716,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9147",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 20 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1717,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9147",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 21 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1718,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9148"
|
|
),
|
|
"Archades - Pinewood Chop 21 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1719,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9148",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 21 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1720,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9148",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 22 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1721,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9149"
|
|
),
|
|
"Archades - Pinewood Chop 22 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1722,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9149",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 22 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1723,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9149",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 23 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1724,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914A"
|
|
),
|
|
"Archades - Pinewood Chop 23 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1725,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914A",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 23 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1726,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914A",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 24 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1727,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914B"
|
|
),
|
|
"Archades - Pinewood Chop 24 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1728,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914B",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 24 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1729,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914B",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 25 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1730,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914C"
|
|
),
|
|
"Archades - Pinewood Chop 25 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1731,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914C",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 25 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1732,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914C",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 26 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1733,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914D"
|
|
),
|
|
"Archades - Pinewood Chop 26 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1734,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914D",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 26 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1735,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914D",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 27 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1736,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914E"
|
|
),
|
|
"Archades - Pinewood Chop 27 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1737,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914E",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 27 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1738,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914E",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Pinewood Chop 28 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1739,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914F"
|
|
),
|
|
"Archades - Pinewood Chop 28 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1740,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914F",
|
|
secondary_index=1
|
|
),
|
|
"Archades - Pinewood Chop 28 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1741,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="914F",
|
|
secondary_index=2
|
|
),
|
|
"Archades - Sandalwood Chop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1742,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9150",
|
|
difficulty=2
|
|
),
|
|
"Archades - Sandalwood Chop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1743,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9150",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Archades - Sandalwood Chop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1744,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9150",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Draklor Laboratory - Lab Access Card Reward (1)": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=1745,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9151"
|
|
),
|
|
"Draklor Laboratory - Lab Access Card Reward (2)": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=1746,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9151",
|
|
secondary_index=1
|
|
),
|
|
"Draklor Laboratory - Lab Access Card Reward (3)": FF12OpenWorldLocationData(
|
|
region="Draklor Laboratory",
|
|
address=1747,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9151",
|
|
secondary_index=2
|
|
),
|
|
"Giruvegan End - Defeat Shemhazai Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giruvegan End",
|
|
address=1748,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9192",
|
|
difficulty=5
|
|
),
|
|
"Giruvegan End - Defeat Shemhazai Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giruvegan End",
|
|
address=1749,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9192",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Giruvegan End - Defeat Shemhazai Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giruvegan End",
|
|
address=1750,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9192",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Giruvegan End - Treaty-Blade Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giruvegan End",
|
|
address=1751,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9152",
|
|
difficulty=5
|
|
),
|
|
"Giruvegan End - Treaty-Blade Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giruvegan End",
|
|
address=1752,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9152",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Giruvegan End - Treaty-Blade Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giruvegan End",
|
|
address=1753,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9152",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Pharos of Ridorana - Black Orb 1 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1754,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9153",
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Black Orb 1 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1755,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9153",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Black Orb 1 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1756,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9153",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Black Orb 2 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1757,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9154",
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Black Orb 2 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1758,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9154",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Black Orb 2 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1759,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9154",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Black Orb 3 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1760,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9155",
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Black Orb 3 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1761,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9155",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Black Orb 3 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1762,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9155",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Defeat Hashmal Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1763,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9193",
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Defeat Hashmal Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1764,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9193",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Defeat Hashmal Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1765,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9193",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Pharos of Ridorana - Defeat Famfrit and Cid 2 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1766,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918F",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana - Defeat Famfrit and Cid 2 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1767,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918F",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana - Defeat Famfrit and Cid 2 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=1768,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918F",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 4 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1769,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9156",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 4 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1770,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9156",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 4 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1771,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9156",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 5 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1772,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9157",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 5 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1773,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9157",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 5 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1774,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9157",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 6 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1775,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9158",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 6 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1776,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9158",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 6 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1777,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9158",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 7 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1778,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9159",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 7 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1779,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9159",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 7 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1780,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9159",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 8 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1781,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915A",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 8 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1782,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915A",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 8 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1783,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915A",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 9 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1784,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915B",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 9 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1785,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915B",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 9 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1786,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915B",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 10 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1787,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915C",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 10 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1788,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915C",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 10 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1789,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915C",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 11 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1790,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915D",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 11 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1791,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915D",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 11 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1792,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915D",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 12 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1793,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915E",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 12 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1794,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915E",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 12 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1795,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915E",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 13 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1796,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915F",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 13 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1797,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915F",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 13 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1798,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="915F",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 14 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1799,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9160",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 14 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1800,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9160",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 14 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1801,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9160",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 15 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1802,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9161",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 15 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1803,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9161",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 15 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1804,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9161",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 16 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1805,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9162",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 16 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1806,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9162",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 16 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1807,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9162",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 17 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1808,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9163",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 17 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1809,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9163",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 17 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1810,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9163",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 18 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1811,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9164",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 18 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1812,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9164",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 18 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1813,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9164",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 19 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1814,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9165",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 19 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1815,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9165",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 19 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1816,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9165",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 20 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1817,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9166",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 20 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1818,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9166",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 20 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1819,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9166",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 21 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1820,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9167",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 21 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1821,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9167",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 21 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1822,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9167",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 22 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1823,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9168",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 22 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1824,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9168",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 22 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1825,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9168",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 23 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1826,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9169",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 23 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1827,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9169",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 23 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1828,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9169",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 24 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1829,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916A",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 24 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1830,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916A",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana Subterra - Black Orb 24 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana Subterra",
|
|
address=1831,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916A",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Rabanastre - Hunt 1: Rogue Tomato Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1832,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9003",
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Hunt 1: Rogue Tomato Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1833,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9003",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Hunt 1: Rogue Tomato Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1834,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9003",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Hunt 2: Thextera Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1835,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9004",
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Hunt 2: Thextera Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1836,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9004",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Hunt 2: Thextera Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1837,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9004",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Hunt 3: Flowering Cactoid Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=1838,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9005",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Hunt 3: Flowering Cactoid Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=1839,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9005",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Hunt 3: Flowering Cactoid Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=1840,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9005",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - Hunt 4: Wraith Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1841,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9006",
|
|
difficulty=1
|
|
),
|
|
"Lowtown - Hunt 4: Wraith Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1842,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9006",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - Hunt 4: Wraith Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1843,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9006",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Hunt 5: Nidhogg Reward (1)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1844,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9007",
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Hunt 5: Nidhogg Reward (2)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1845,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9007",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Hunt 5: Nidhogg Reward (3)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1846,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9007",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Hunt 6: White Mousse Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1847,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9008",
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Hunt 6: White Mousse Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1848,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9008",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Hunt 6: White Mousse Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1849,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9008",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Lowtown - Hunt 7: Ring Wyrm Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1850,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9009",
|
|
difficulty=5
|
|
),
|
|
"Lowtown - Hunt 7: Ring Wyrm Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1851,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9009",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Lowtown - Hunt 7: Ring Wyrm Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1852,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9009",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Hunt 8: Wyvern Lord Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1853,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900A",
|
|
difficulty=2
|
|
),
|
|
"Rabanastre - Hunt 8: Wyvern Lord Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1854,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900A",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Rabanastre - Hunt 8: Wyvern Lord Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1855,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900A",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Rabanastre - Hunt 9: Marilith Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1856,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900B",
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Hunt 9: Marilith Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1857,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900B",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Hunt 9: Marilith Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=1858,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900B",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Jahara - Hunt 10: Enkelados Reward (1)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1859,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900C",
|
|
difficulty=2
|
|
),
|
|
"Jahara - Hunt 10: Enkelados Reward (2)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1860,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900C",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Jahara - Hunt 10: Enkelados Reward (3)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1861,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900C",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Giza Plains Rains - Hunt 11: Croakadile Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1862,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900D",
|
|
difficulty=2
|
|
),
|
|
"Giza Plains Rains - Hunt 11: Croakadile Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1863,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900D",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Giza Plains Rains - Hunt 11: Croakadile Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=1864,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900D",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Jahara - Hunt 12: Ixtab Reward (1)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1865,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900E",
|
|
difficulty=2
|
|
),
|
|
"Jahara - Hunt 12: Ixtab Reward (2)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1866,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900E",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Jahara - Hunt 12: Ixtab Reward (3)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1867,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900E",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 13: Feral Retriever Reward (1)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1868,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900F",
|
|
difficulty=3
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 13: Feral Retriever Reward (2)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1869,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900F",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 13: Feral Retriever Reward (3)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1870,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="900F",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Eruyt Village - Hunt 14: Vorpal Bunny Reward (1)": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1871,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9010",
|
|
difficulty=3
|
|
),
|
|
"Eruyt Village - Hunt 14: Vorpal Bunny Reward (2)": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1872,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9010",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Eruyt Village - Hunt 14: Vorpal Bunny Reward (3)": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1873,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9010",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Jahara - Hunt 15: Mindflayer Reward (1)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1874,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9011",
|
|
difficulty=4
|
|
),
|
|
"Jahara - Hunt 15: Mindflayer Reward (2)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1875,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9011",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Jahara - Hunt 15: Mindflayer Reward (3)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1876,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9011",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Dalmasca Estersand - Hunt 16: Bloodwing Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=1877,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9012",
|
|
difficulty=5
|
|
),
|
|
"Dalmasca Estersand - Hunt 16: Bloodwing Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=1878,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9012",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Dalmasca Estersand - Hunt 16: Bloodwing Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=1879,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9012",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Nalbina Fortress - Hunt 17: Atomos Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1880,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9013",
|
|
difficulty=3
|
|
),
|
|
"Nalbina Fortress - Hunt 17: Atomos Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1881,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9013",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Nalbina Fortress - Hunt 17: Atomos Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1882,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9013",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Nalbina Fortress - Hunt 18: Roblon Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1883,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9014",
|
|
difficulty=6
|
|
),
|
|
"Nalbina Fortress - Hunt 18: Roblon Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1884,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9014",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Nalbina Fortress - Hunt 18: Roblon Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1885,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9014",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Mosphoran Highwaste - Hunt 19: Braegh Reward (1)": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=1886,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9015",
|
|
difficulty=4
|
|
),
|
|
"Mosphoran Highwaste - Hunt 19: Braegh Reward (2)": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=1887,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9015",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Mosphoran Highwaste - Hunt 19: Braegh Reward (3)": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste",
|
|
address=1888,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9015",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Archades - Hunt 20: Darksteel Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1889,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9016",
|
|
difficulty=4
|
|
),
|
|
"Archades - Hunt 20: Darksteel Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1890,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9016",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Archades - Hunt 20: Darksteel Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1891,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9016",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Balfonheim - Hunt 21: Vyraal Reward (1)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1892,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9017",
|
|
difficulty=5
|
|
),
|
|
"Balfonheim - Hunt 21: Vyraal Reward (2)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1893,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9017",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Balfonheim - Hunt 21: Vyraal Reward (3)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1894,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9017",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Old Archades - Hunt 22: Lindwyrm Reward (1)": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=1895,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9018",
|
|
difficulty=5
|
|
),
|
|
"Old Archades - Hunt 22: Lindwyrm Reward (2)": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=1896,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9018",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Old Archades - Hunt 22: Lindwyrm Reward (3)": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=1897,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9018",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Archades - Hunt 23: Overlord Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1898,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9019",
|
|
difficulty=6
|
|
),
|
|
"Archades - Hunt 23: Overlord Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1899,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9019",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Archades - Hunt 23: Overlord Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=1900,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9019",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Nalbina Fortress - Hunt 24: Goliath Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1901,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901A",
|
|
difficulty=6
|
|
),
|
|
"Nalbina Fortress - Hunt 24: Goliath Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1902,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901A",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Nalbina Fortress - Hunt 24: Goliath Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1903,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901A",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Nalbina Fortress - Hunt 25: Deathscythe Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1904,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901B",
|
|
difficulty=6
|
|
),
|
|
"Nalbina Fortress - Hunt 25: Deathscythe Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1905,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901B",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Nalbina Fortress - Hunt 25: Deathscythe Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=1906,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901B",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Skyferry - Hunt 26: Deathgaze Reward (1)": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=1907,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901C",
|
|
difficulty=7
|
|
),
|
|
"Skyferry - Hunt 26: Deathgaze Reward (2)": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=1908,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901C",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Skyferry - Hunt 26: Deathgaze Reward (3)": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=1909,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901C",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Bhujerba - Hunt 27: Diabolos Reward (1)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1910,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901D",
|
|
difficulty=7
|
|
),
|
|
"Bhujerba - Hunt 27: Diabolos Reward (2)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1911,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901D",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Bhujerba - Hunt 27: Diabolos Reward (3)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1912,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901D",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 28: Piscodaemon Reward (1)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1913,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901E",
|
|
difficulty=5
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 28: Piscodaemon Reward (2)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1914,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901E",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 28: Piscodaemon Reward (3)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1915,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901E",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Eruyt Village - Hunt 29: Wild Malboro Reward (1)": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1916,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901F",
|
|
difficulty=6
|
|
),
|
|
"Eruyt Village - Hunt 29: Wild Malboro Reward (2)": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1917,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901F",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Eruyt Village - Hunt 29: Wild Malboro Reward (3)": FF12OpenWorldLocationData(
|
|
region="Eruyt Village",
|
|
address=1918,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="901F",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Jahara - Hunt 30: Catoblepas Reward (1)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1919,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9020",
|
|
difficulty=6
|
|
),
|
|
"Jahara - Hunt 30: Catoblepas Reward (2)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1920,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9020",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Jahara - Hunt 30: Catoblepas Reward (3)": FF12OpenWorldLocationData(
|
|
region="Jahara",
|
|
address=1921,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9020",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 31: Fafnir Reward (1)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1922,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9021",
|
|
difficulty=7
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 31: Fafnir Reward (2)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1923,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9021",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 31: Fafnir Reward (3)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1924,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9021",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Balfonheim - Hunt 32: Pylraster Reward (1)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1925,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9022",
|
|
difficulty=7
|
|
),
|
|
"Balfonheim - Hunt 32: Pylraster Reward (2)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1926,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9022",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Balfonheim - Hunt 32: Pylraster Reward (3)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1927,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9022",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Giza Plains Dry - Hunt 33: Cluckatrice Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1928,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9023",
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Hunt 33: Cluckatrice Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1929,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9023",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Giza Plains Dry - Hunt 33: Cluckatrice Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1930,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9023",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Hunt 34: Rocktoise Reward (1)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1931,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9024",
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Hunt 34: Rocktoise Reward (2)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1932,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9024",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Hunt 34: Rocktoise Reward (3)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1933,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9024",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Lowtown - Hunt 35: Orthros Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1934,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9025",
|
|
difficulty=5
|
|
),
|
|
"Lowtown - Hunt 35: Orthros Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1935,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9025",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Lowtown - Hunt 35: Orthros Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1936,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9025",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Giza Plains Dry - Hunt 36: Gil Snapper Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1937,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9026",
|
|
difficulty=3
|
|
),
|
|
"Giza Plains Dry - Hunt 36: Gil Snapper Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1938,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9026",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Giza Plains Dry - Hunt 36: Gil Snapper Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=1939,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9026",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 37: Trickster Reward (1)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1940,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9027",
|
|
difficulty=5
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 37: Trickster Reward (2)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1941,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9027",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Mt. Bur-Omisace - Hunt 37: Trickster Reward (3)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=1942,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9027",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Bhujerba - Hunt 38: Antlion Reward (1)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1943,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9028",
|
|
difficulty=5
|
|
),
|
|
"Bhujerba - Hunt 38: Antlion Reward (2)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1944,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9028",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Bhujerba - Hunt 38: Antlion Reward (3)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=1945,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9028",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Aerodrome - Hunt 39: Carrot Reward (1)": FF12OpenWorldLocationData(
|
|
region="Aerodrome",
|
|
address=1946,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9029",
|
|
difficulty=7
|
|
),
|
|
"Aerodrome - Hunt 39: Carrot Reward (2)": FF12OpenWorldLocationData(
|
|
region="Aerodrome",
|
|
address=1947,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9029",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Aerodrome - Hunt 39: Carrot Reward (3)": FF12OpenWorldLocationData(
|
|
region="Aerodrome",
|
|
address=1948,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9029",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Hunt 40: Gilgamesh Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1949,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902A",
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Hunt 40: Gilgamesh Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1950,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902A",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Hunt 40: Gilgamesh Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1951,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902A",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Hunt 41: Belito Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1952,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9122",
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Hunt 41: Belito Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1953,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9122",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Hunt 41: Belito Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1954,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9122",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Lowtown - Hunt 42: Behemoth King Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1955,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902B",
|
|
difficulty=7
|
|
),
|
|
"Lowtown - Hunt 42: Behemoth King Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1956,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902B",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Lowtown - Hunt 42: Behemoth King Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=1957,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902B",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Balfonheim - Hunt 43: Ixion Reward (1)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1958,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902C",
|
|
difficulty=6
|
|
),
|
|
"Balfonheim - Hunt 43: Ixion Reward (2)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1959,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902C",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Balfonheim - Hunt 43: Ixion Reward (3)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=1960,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902C",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Clan Hall - Hunt 44: Shadowseer Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1961,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902D",
|
|
difficulty=6
|
|
),
|
|
"Clan Hall - Hunt 44: Shadowseer Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1962,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902D",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Clan Hall - Hunt 44: Shadowseer Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1963,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902D",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Clan Hall - Hunt 45: Yiazmat Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1964,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902E",
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Hunt 45: Yiazmat Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1965,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902E",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Hunt 45: Yiazmat Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1966,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902E",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Clan Rank: Moppet Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1967,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902F",
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Rank: Moppet Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1968,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902F",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Rank: Moppet Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1969,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="902F",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Rank: Hedge Knight Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1970,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9030",
|
|
difficulty=2
|
|
),
|
|
"Clan Hall - Clan Rank: Hedge Knight Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1971,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9030",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Clan Hall - Clan Rank: Hedge Knight Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1972,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9030",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Clan Hall - Clan Rank: Rear Guard Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1973,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9031",
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Rank: Rear Guard Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1974,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9031",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Rank: Rear Guard Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1975,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9031",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Rank: Vanguard Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1976,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9032",
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Rank: Vanguard Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1977,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9032",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Rank: Vanguard Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1978,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9032",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Rank: Headhunter Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1979,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9033",
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Rank: Headhunter Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1980,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9033",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Rank: Headhunter Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1981,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9033",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Rank: Ward of Justice Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1982,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9034",
|
|
difficulty=6
|
|
),
|
|
"Clan Hall - Clan Rank: Ward of Justice Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1983,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9034",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Clan Hall - Clan Rank: Ward of Justice Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1984,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9034",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Clan Hall - Clan Rank: Brave Companion Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1985,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9035",
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Rank: Brave Companion Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1986,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9035",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Rank: Brave Companion Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1987,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9035",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Rank: Riskbreaker Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1988,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9036",
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Clan Rank: Riskbreaker Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1989,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9036",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Clan Rank: Riskbreaker Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1990,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9036",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Clan Rank: Paragon of Justice Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1991,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9037",
|
|
difficulty=9
|
|
),
|
|
"Clan Hall - Clan Rank: Paragon of Justice Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1992,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9037",
|
|
secondary_index=1,
|
|
difficulty=9
|
|
),
|
|
"Clan Hall - Clan Rank: Paragon of Justice Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1993,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9037",
|
|
secondary_index=2,
|
|
difficulty=9
|
|
),
|
|
"Clan Hall - Clan Rank: High Guardian Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1994,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9038",
|
|
difficulty=10
|
|
),
|
|
"Clan Hall - Clan Rank: High Guardian Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1995,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9038",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Clan Hall - Clan Rank: High Guardian Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1996,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9038",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Clan Hall - Clan Rank: Knight of the Round Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1997,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9039",
|
|
difficulty=11
|
|
),
|
|
"Clan Hall - Clan Rank: Knight of the Round Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1998,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9039",
|
|
secondary_index=1,
|
|
difficulty=11
|
|
),
|
|
"Clan Hall - Clan Rank: Knight of the Round Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=1999,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9039",
|
|
secondary_index=2,
|
|
difficulty=11
|
|
),
|
|
"Clan Hall - Clan Rank: Order of Ambrosia Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2000,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="903A",
|
|
difficulty=12
|
|
),
|
|
"Clan Hall - Clan Rank: Order of Ambrosia Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2001,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="903A",
|
|
secondary_index=1,
|
|
difficulty=12
|
|
),
|
|
"Clan Hall - Clan Rank: Order of Ambrosia Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2002,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="903A",
|
|
secondary_index=2,
|
|
difficulty=12
|
|
),
|
|
"Clan Hall - Clan Boss: Flans Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2003,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903B",
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Flans Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2004,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903B",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Flans Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2005,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903B",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Firemane Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2006,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903C",
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Firemane Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2007,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903C",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Firemane Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2008,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903C",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Earth Tyrant Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2009,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903D",
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Boss: Earth Tyrant Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2010,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903D",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Boss: Earth Tyrant Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2011,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903D",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Boss: Mimic Queen Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2012,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903E",
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Mimic Queen Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2013,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903E",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Mimic Queen Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2014,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903E",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Demon Wall 1 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2015,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903F",
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Boss: Demon Wall 1 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2016,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903F",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Boss: Demon Wall 1 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2017,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="903F",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Boss: Demon Wall 2 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2018,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9040",
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Demon Wall 2 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2019,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9040",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Demon Wall 2 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2020,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9040",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Boss: Elder Wyrm Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2021,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9041",
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Boss: Elder Wyrm Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2022,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9041",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Boss: Elder Wyrm Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2023,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9041",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Boss: Tiamat Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2024,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9042",
|
|
difficulty=2
|
|
),
|
|
"Clan Hall - Clan Boss: Tiamat Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2025,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9042",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Clan Hall - Clan Boss: Tiamat Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2026,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9042",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Clan Hall - Clan Boss: Vinuskar Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2027,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9043",
|
|
difficulty=2
|
|
),
|
|
"Clan Hall - Clan Boss: Vinuskar Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2028,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9043",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Clan Hall - Clan Boss: Vinuskar Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2029,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9043",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Clan Hall - Clan Boss: King Bomb Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2030,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9044",
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: King Bomb Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2031,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9044",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: King Bomb Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2032,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9044",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Mandragora Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2033,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9045",
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Boss: Mandragora Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2034,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9045",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Boss: Mandragora Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2035,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9045",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Boss: Ahriman Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2036,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9046",
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Ahriman Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2037,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9046",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Ahriman Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2038,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9046",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Hell Wyrm Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2039,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9047",
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Boss: Hell Wyrm Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2040,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9047",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Boss: Hell Wyrm Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2041,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9047",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Boss: Rafflesia Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2042,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9048",
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Boss: Rafflesia Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2043,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9048",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Boss: Rafflesia Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2044,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9048",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Clan Hall - Clan Boss: Daedulus Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2045,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9049",
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Daedulus Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2046,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9049",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Daedulus Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2047,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9049",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Tyrant Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2048,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904A",
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Tyrant Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2049,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904A",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Tyrant Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2050,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904A",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Hydro Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2051,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904B",
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Hydro Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2052,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904B",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Hydro Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2053,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904B",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Boss: Humbaba Mistant Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2054,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904C",
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Boss: Humbaba Mistant Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2055,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904C",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Boss: Humbaba Mistant Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2056,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904C",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Boss: Fury Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2057,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904D",
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Boss: Fury Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2058,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904D",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Boss: Fury Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2059,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904D",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Clan Hall - Clan Boss: Omega Mark XII Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2060,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="905A",
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Clan Boss: Omega Mark XII Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2061,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="905A",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Clan Boss: Omega Mark XII Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2062,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="905A",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Clan Esper: Control 1 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2063,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904E",
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Esper: Control 1 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2064,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904E",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Esper: Control 1 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2065,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904E",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Clan Hall - Clan Esper: Control 4 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2066,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904F",
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Esper: Control 4 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2067,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904F",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Esper: Control 4 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2068,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="904F",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Clan Hall - Clan Esper: Control 8 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2069,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9050",
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Esper: Control 8 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2070,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9050",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Esper: Control 8 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2071,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9050",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Clan Hall - Clan Esper: Control 13 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2072,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9051",
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Clan Esper: Control 13 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2073,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9051",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Clan Hall - Clan Esper: Control 13 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Clan Hall",
|
|
address=2074,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9051",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Dalmasca Estersand - Flowering Cactoid Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2075,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916D",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Flowering Cactoid Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2076,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916D",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Flowering Cactoid Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2077,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916D",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Patient Barheim Key Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2078,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916E",
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand - Patient Barheim Key Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2079,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916E",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand - Patient Barheim Key Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2080,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916E",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Dalmasca Estersand - Dantro's Wife Give Cactus Flower Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2081,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9081",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Dantro's Wife Give Cactus Flower Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2082,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9081",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Dantro's Wife Give Cactus Flower Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2083,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9081",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Cactus Family Quest Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2084,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="908A",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Cactus Family Quest Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2085,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="908A",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Estersand - Cactus Family Quest Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2086,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="908A",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Mt. Bur-Omisace - Acolyte Stone of the Condemner Reward (1)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=2087,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916F",
|
|
difficulty=3
|
|
),
|
|
"Mt. Bur-Omisace - Acolyte Stone of the Condemner Reward (2)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=2088,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916F",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Mt. Bur-Omisace - Acolyte Stone of the Condemner Reward (3)": FF12OpenWorldLocationData(
|
|
region="Mt. Bur-Omisace",
|
|
address=2089,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="916F",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Dalmasca Westersand - Earth Tyrant Quest Wind Globe Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=2090,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9170",
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Earth Tyrant Quest Wind Globe Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=2091,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9170",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Dalmasca Westersand - Earth Tyrant Quest Wind Globe Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=2092,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9170",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Earth Tyrant Quest Windvane Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2093,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9171",
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Earth Tyrant Quest Windvane Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2094,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9171",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Earth Tyrant Quest Windvane Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2095,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9171",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Garamsythe Waterway - White Mousse Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2096,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9172",
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - White Mousse Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2097,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9172",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - White Mousse Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2098,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9172",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Sorbet Sluice Gate Key Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2099,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9173",
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Sorbet Sluice Gate Key Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2100,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9173",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Sorbet Sluice Gate Key Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2101,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9173",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Ozmone Plain - Enkelados Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=2102,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9174",
|
|
difficulty=3
|
|
),
|
|
"Ozmone Plain - Enkelados Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=2103,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9174",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Ozmone Plain - Enkelados Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=2104,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9174",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Giza Plains Dry - Lesina Give Errmonea Leaf Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=2105,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9062",
|
|
difficulty=3
|
|
),
|
|
"Giza Plains Dry - Lesina Give Errmonea Leaf Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=2106,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9062",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Giza Plains Dry - Lesina Give Errmonea Leaf Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=2107,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9062",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Bhujerba - Pilika Merchant's Armband Reward (1)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2108,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9175",
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Pilika Merchant's Armband Reward (2)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2109,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9175",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Pilika Merchant's Armband Reward (3)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2110,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9175",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Clio's Technicks Pilika's Diary Reward (1)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2111,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9176",
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Clio's Technicks Pilika's Diary Reward (2)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2112,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9176",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Clio's Technicks Pilika's Diary Reward (3)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2113,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9176",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Pilika Give Pilika's Diary Reward (1)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2114,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="908D",
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Pilika Give Pilika's Diary Reward (2)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2115,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="908D",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Bhujerba - Pilika Give Pilika's Diary Reward (3)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2116,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="908D",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Golmore Jungle S - Vorpal Bunny Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=2117,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9177",
|
|
difficulty=3
|
|
),
|
|
"Golmore Jungle S - Vorpal Bunny Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=2118,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9177",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Golmore Jungle S - Vorpal Bunny Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=2119,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9177",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Giza Plains Rains - Croakadile Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=2120,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9178",
|
|
difficulty=2
|
|
),
|
|
"Giza Plains Rains - Croakadile Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=2121,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9178",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Giza Plains Rains - Croakadile Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=2122,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9178",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Tchita Uplands - Lindwyrm Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=2123,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9179",
|
|
difficulty=5
|
|
),
|
|
"Tchita Uplands - Lindwyrm Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=2124,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9179",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Tchita Uplands - Lindwyrm Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=2125,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9179",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Giza Plains Rains - Nomads Silent Urn Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=2126,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917A",
|
|
difficulty=3
|
|
),
|
|
"Giza Plains Rains - Nomads Silent Urn Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=2127,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917A",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Giza Plains Rains - Nomads Silent Urn Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Rains",
|
|
address=2128,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917A",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Garamsythe Waterway - Orthros Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2129,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917B",
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - Orthros Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2130,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917B",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - Orthros Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2131,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917B",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Bhujerba - Niray Site 3 Key Reward (1)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2132,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917D"
|
|
),
|
|
"Bhujerba - Niray Site 3 Key Reward (2)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2133,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917D",
|
|
secondary_index=1
|
|
),
|
|
"Bhujerba - Niray Site 3 Key Reward (3)": FF12OpenWorldLocationData(
|
|
region="Bhujerba",
|
|
address=2134,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917D",
|
|
secondary_index=2
|
|
),
|
|
"Phon Coast - Site 11 Key Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2135,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917E",
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Site 11 Key Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2136,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917E",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Site 11 Key Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2137,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917E",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Paramina Rift - Fafnir Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=2138,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917F",
|
|
difficulty=7
|
|
),
|
|
"Paramina Rift - Fafnir Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=2139,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917F",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Paramina Rift - Fafnir Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=2140,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917F",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Zertinan Caverns NE - Marilith Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=2141,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9180",
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Marilith Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=2142,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9180",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns NE - Marilith Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns NE",
|
|
address=2143,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9180",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Vyraal Drop Reward (1)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2144,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9181",
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Vyraal Drop Reward (2)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2145,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9181",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Vyraal Drop Reward (3)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2146,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9181",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Balfonheim - Viera Wayfarer Dragon Scale Reward (1)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=2147,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9182",
|
|
difficulty=5
|
|
),
|
|
"Balfonheim - Viera Wayfarer Dragon Scale Reward (2)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=2148,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9182",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Balfonheim - Viera Wayfarer Dragon Scale Reward (3)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=2149,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9182",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Wyrm Philosopher Ageworn Key Reward (1)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2150,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9183",
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Wyrm Philosopher Ageworn Key Reward (2)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2151,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9183",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Cerobi Steppe - Wyrm Philosopher Ageworn Key Reward (3)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2152,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9183",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Skyferry - Ann's Letter Reward (1)": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=2153,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9184",
|
|
difficulty=2
|
|
),
|
|
"Skyferry - Ann's Letter Reward (2)": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=2154,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9184",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Skyferry - Ann's Letter Reward (3)": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=2155,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9184",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Skyferry - Ann's Sisters Quest Reward (1)": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=2156,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906C",
|
|
difficulty=7
|
|
),
|
|
"Skyferry - Ann's Sisters Quest Reward (2)": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=2157,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906C",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Skyferry - Ann's Sisters Quest Reward (3)": FF12OpenWorldLocationData(
|
|
region="Skyferry",
|
|
address=2158,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906C",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Lowtown - Dusty Letter Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=2159,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9185",
|
|
difficulty=2
|
|
),
|
|
"Lowtown - Dusty Letter Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=2160,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9185",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Lowtown - Dusty Letter Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=2161,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9185",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Lowtown - Samal Blackened Fragment Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=2162,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917C",
|
|
difficulty=5
|
|
),
|
|
"Lowtown - Samal Blackened Fragment Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=2163,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917C",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Lowtown - Samal Blackened Fragment Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lowtown",
|
|
address=2164,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="917C",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Garamsythe Waterway - Dull Fragment Reward (1)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2165,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9186"
|
|
),
|
|
"Garamsythe Waterway - Dull Fragment Reward (2)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2166,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9186",
|
|
secondary_index=1
|
|
),
|
|
"Garamsythe Waterway - Dull Fragment Reward (3)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2167,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9186",
|
|
secondary_index=2
|
|
),
|
|
"Rabanastre - Grimy Fragment Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2168,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9187",
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Grimy Fragment Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2169,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9187",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Rabanastre - Grimy Fragment Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2170,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9187",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Old Archades - Moonsilver Medallion Reward (1)": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=2171,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9188",
|
|
difficulty=5
|
|
),
|
|
"Old Archades - Moonsilver Medallion Reward (2)": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=2172,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9188",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Old Archades - Moonsilver Medallion Reward (3)": FF12OpenWorldLocationData(
|
|
region="Old Archades",
|
|
address=2173,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9188",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Nabreus Medallion 1 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2174,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9189",
|
|
difficulty=6
|
|
),
|
|
"Nabreus Deadlands - Nabreus Medallion 1 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2175,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9189",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Nabreus Deadlands - Nabreus Medallion 1 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2176,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9189",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Nabreus Deadlands - Nabreus Medallion 2 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2177,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918A",
|
|
difficulty=6
|
|
),
|
|
"Nabreus Deadlands - Nabreus Medallion 2 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2178,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918A",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Nabreus Deadlands - Nabreus Medallion 2 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2179,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918A",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Nabreus Deadlands - Nabreus Medallion 3 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2180,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918B",
|
|
difficulty=6
|
|
),
|
|
"Nabreus Deadlands - Nabreus Medallion 3 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2181,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918B",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Nabreus Deadlands - Nabreus Medallion 3 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2182,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918B",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Necrohol of Nabudis - Medallion of Might Reward (1)": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=2183,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918C",
|
|
difficulty=7
|
|
),
|
|
"Necrohol of Nabudis - Medallion of Might Reward (2)": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=2184,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918C",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Necrohol of Nabudis - Medallion of Might Reward (3)": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=2185,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="918C",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Rabanastre - Viera Rendezvous Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2186,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9056",
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Viera Rendezvous Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2187,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9056",
|
|
secondary_index=1,
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Viera Rendezvous Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2188,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9056",
|
|
secondary_index=2,
|
|
difficulty=1
|
|
),
|
|
"Rabanastre - Ktjn Reward Reward (1)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2189,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9058",
|
|
difficulty=2
|
|
),
|
|
"Rabanastre - Ktjn Reward Reward (2)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2190,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9058",
|
|
secondary_index=1,
|
|
difficulty=2
|
|
),
|
|
"Rabanastre - Ktjn Reward Reward (3)": FF12OpenWorldLocationData(
|
|
region="Rabanastre",
|
|
address=2191,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9058",
|
|
secondary_index=2,
|
|
difficulty=2
|
|
),
|
|
"Nalbina Fortress - Jovy Reward Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=2192,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906A",
|
|
difficulty=7
|
|
),
|
|
"Nalbina Fortress - Jovy Reward Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=2193,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906A",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Nalbina Fortress - Jovy Reward Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nalbina Fortress",
|
|
address=2194,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906A",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 1 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2195,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906E"
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 1 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2196,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906E",
|
|
secondary_index=1
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 1 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2197,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906E",
|
|
secondary_index=2
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 2 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2198,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906F"
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 2 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2199,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906F",
|
|
secondary_index=1
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 2 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2200,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="906F",
|
|
secondary_index=2
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 3 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2201,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9057"
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 3 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2202,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9057",
|
|
secondary_index=1
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 3 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2203,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9057",
|
|
secondary_index=2
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 4 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2204,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9070"
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 4 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2205,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9070",
|
|
secondary_index=1
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 4 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2206,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9070",
|
|
secondary_index=2
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 5 Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2207,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9059"
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 5 Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2208,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9059",
|
|
secondary_index=1
|
|
),
|
|
"Dalmasca Estersand - Outpost Mysterious Glint 5 Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2209,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9059",
|
|
secondary_index=2
|
|
),
|
|
"Balfonheim - Footrace Reward (1)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=2210,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="908F"
|
|
),
|
|
"Balfonheim - Footrace Reward (2)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=2211,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="908F",
|
|
secondary_index=1
|
|
),
|
|
"Balfonheim - Footrace Reward (3)": FF12OpenWorldLocationData(
|
|
region="Balfonheim",
|
|
address=2212,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="908F",
|
|
secondary_index=2
|
|
),
|
|
"Zertinan Caverns Center - Defeat Adrammelech Reward (1)": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=2213,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9194",
|
|
difficulty=3
|
|
),
|
|
"Zertinan Caverns Center - Defeat Adrammelech Reward (2)": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=2214,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9194",
|
|
secondary_index=1,
|
|
difficulty=3
|
|
),
|
|
"Zertinan Caverns Center - Defeat Adrammelech Reward (3)": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=2215,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9194",
|
|
secondary_index=2,
|
|
difficulty=3
|
|
),
|
|
"Barheim Passage - Defeat Zalera Reward (1)": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=2216,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9195",
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Defeat Zalera Reward (2)": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=2217,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9195",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Barheim Passage - Defeat Zalera Reward (3)": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=2218,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9195",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Garamsythe Waterway - Defeat Cuchulainn Reward (1)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2219,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9196",
|
|
difficulty=6
|
|
),
|
|
"Garamsythe Waterway - Defeat Cuchulainn Reward (2)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2220,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9196",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Garamsythe Waterway - Defeat Cuchulainn Reward (3)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2221,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9196",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Stilshrine of Miriam - Defeat Zeromus Reward (1)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=2222,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9197",
|
|
difficulty=5
|
|
),
|
|
"Stilshrine of Miriam - Defeat Zeromus Reward (2)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=2223,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9197",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Stilshrine of Miriam - Defeat Zeromus Reward (3)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=2224,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9197",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Mosphoran Highwaste Upper - Defeat Exodus Reward (1)": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=2225,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9198",
|
|
difficulty=4
|
|
),
|
|
"Mosphoran Highwaste Upper - Defeat Exodus Reward (2)": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=2226,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9198",
|
|
secondary_index=1,
|
|
difficulty=4
|
|
),
|
|
"Mosphoran Highwaste Upper - Defeat Exodus Reward (3)": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=2227,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9198",
|
|
secondary_index=2,
|
|
difficulty=4
|
|
),
|
|
"Necrohol of Nabudis - Defeat Chaos Reward (1)": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=2228,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9199",
|
|
difficulty=5
|
|
),
|
|
"Necrohol of Nabudis - Defeat Chaos Reward (2)": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=2229,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9199",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Necrohol of Nabudis - Defeat Chaos Reward (3)": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=2230,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9199",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Great Crystal - Defeat Ultima Reward (1)": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=2231,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="919A",
|
|
difficulty=6
|
|
),
|
|
"Great Crystal - Defeat Ultima Reward (2)": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=2232,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="919A",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Great Crystal - Defeat Ultima Reward (3)": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=2233,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="919A",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Henne Mines Deep - Defeat Zodiark Reward (1)": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=2234,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="919B",
|
|
difficulty=7
|
|
),
|
|
"Henne Mines Deep - Defeat Zodiark Reward (2)": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=2235,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="919B",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Henne Mines Deep - Defeat Zodiark Reward (3)": FF12OpenWorldLocationData(
|
|
region="Henne Mines Deep",
|
|
address=2236,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="919B",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Thalassinon - Shelled Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2237,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9090",
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Thalassinon - Shelled Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2238,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9090",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Thalassinon - Shelled Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2239,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9090",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Garamsythe Waterway - Gavial - Fur-scaled Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2240,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9091",
|
|
difficulty=6
|
|
),
|
|
"Garamsythe Waterway - Gavial - Fur-scaled Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2241,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9091",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Garamsythe Waterway - Gavial - Fur-scaled Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Garamsythe Waterway",
|
|
address=2242,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9091",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Barheim Passage - Ishteen - Bony Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=2243,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9092",
|
|
difficulty=7
|
|
),
|
|
"Barheim Passage - Ishteen - Bony Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=2244,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9092",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Barheim Passage - Ishteen - Bony Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Barheim Passage",
|
|
address=2245,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9092",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Dalmasca Westersand - Kaiser Wolf - Fanged Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=2246,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9093",
|
|
difficulty=5
|
|
),
|
|
"Dalmasca Westersand - Kaiser Wolf - Fanged Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=2247,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9093",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Dalmasca Westersand - Kaiser Wolf - Fanged Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Westersand",
|
|
address=2248,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9093",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Dalmasca Estersand - Terror Tyrant - Hide-covered Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2249,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9094",
|
|
difficulty=7
|
|
),
|
|
"Dalmasca Estersand - Terror Tyrant - Hide-covered Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2250,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9094",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Dalmasca Estersand - Terror Tyrant - Hide-covered Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Dalmasca Estersand",
|
|
address=2251,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9094",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Giza Plains Dry - Nazarnir - Maned Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=2252,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9095",
|
|
difficulty=7
|
|
),
|
|
"Giza Plains Dry - Nazarnir - Maned Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=2253,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9095",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Giza Plains Dry - Nazarnir - Maned Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Giza Plains Dry",
|
|
address=2254,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9095",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Zertinan Caverns Center - Alteci - Fell Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=2255,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9096",
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Alteci - Fell Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=2256,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9096",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Zertinan Caverns Center - Alteci - Fell Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Zertinan Caverns Center",
|
|
address=2257,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9096",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Lhusu Mines - Disma - Accursed Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=2258,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9097",
|
|
difficulty=7
|
|
),
|
|
"Lhusu Mines - Disma - Accursed Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=2259,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9097",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Lhusu Mines - Disma - Accursed Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Lhusu Mines",
|
|
address=2260,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9097",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Ogir-Yensa Sandsea - Bull Chocobo - Beaked Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=2261,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9098",
|
|
difficulty=7
|
|
),
|
|
"Ogir-Yensa Sandsea - Bull Chocobo - Beaked Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=2262,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9098",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Ogir-Yensa Sandsea - Bull Chocobo - Beaked Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Ogir-Yensa Sandsea",
|
|
address=2263,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9098",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Nam-Yensa Sandsea - Victanir - Maverick Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=2264,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9099",
|
|
difficulty=7
|
|
),
|
|
"Nam-Yensa Sandsea - Victanir - Maverick Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=2265,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9099",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Nam-Yensa Sandsea - Victanir - Maverick Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nam-Yensa Sandsea",
|
|
address=2266,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="9099",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Tomb of Raithwall - Zombie Lord - Soulless Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=2267,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909A",
|
|
difficulty=6
|
|
),
|
|
"Tomb of Raithwall - Zombie Lord - Soulless Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=2268,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909A",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Tomb of Raithwall - Zombie Lord - Soulless Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Tomb of Raithwall",
|
|
address=2269,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909A",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Mosphoran Highwaste Upper - Dheed - Leathern Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=2270,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909B",
|
|
difficulty=7
|
|
),
|
|
"Mosphoran Highwaste Upper - Dheed - Leathern Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=2271,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909B",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Mosphoran Highwaste Upper - Dheed - Leathern Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Mosphoran Highwaste Upper",
|
|
address=2272,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909B",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Salikawood NW - Rageclaw - Sickle Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Salikawood NW",
|
|
address=2273,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909C",
|
|
difficulty=5
|
|
),
|
|
"Salikawood NW - Rageclaw - Sickle Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Salikawood NW",
|
|
address=2274,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909C",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Salikawood NW - Rageclaw - Sickle Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Salikawood NW",
|
|
address=2275,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909C",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Nabreus Deadlands - Arioch - Vengeful Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2276,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909D",
|
|
difficulty=7
|
|
),
|
|
"Nabreus Deadlands - Arioch - Vengeful Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2277,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909D",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Nabreus Deadlands - Arioch - Vengeful Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Nabreus Deadlands",
|
|
address=2278,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909D",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Necrohol of Nabudis - Vorres - Gravesoil Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=2279,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909E",
|
|
difficulty=7
|
|
),
|
|
"Necrohol of Nabudis - Vorres - Gravesoil Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=2280,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909E",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Necrohol of Nabudis - Vorres - Gravesoil Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Necrohol of Nabudis",
|
|
address=2281,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909E",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Ozmone Plain - Killbug - Metallic Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=2282,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909F",
|
|
difficulty=6
|
|
),
|
|
"Ozmone Plain - Killbug - Metallic Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=2283,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909F",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Ozmone Plain - Killbug - Metallic Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Ozmone Plain",
|
|
address=2284,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="909F",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Henne Mines - Melt - Slimy Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=2285,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A0",
|
|
difficulty=7
|
|
),
|
|
"Henne Mines - Melt - Slimy Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=2286,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A0",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Henne Mines - Melt - Slimy Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Henne Mines",
|
|
address=2287,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A0",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Golmore Jungle S - Biding Mantis - Scythe Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=2288,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A1",
|
|
difficulty=6
|
|
),
|
|
"Golmore Jungle S - Biding Mantis - Scythe Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=2289,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A1",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Golmore Jungle S - Biding Mantis - Scythe Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Golmore Jungle S",
|
|
address=2290,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A1",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Feywood - Dreadguard - Feathered Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=2291,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A2",
|
|
difficulty=7
|
|
),
|
|
"Feywood - Dreadguard - Feathered Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=2292,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A2",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Feywood - Dreadguard - Feathered Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Feywood",
|
|
address=2293,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A2",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Great Crystal - Crystal Knight - Skull Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=2294,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A3",
|
|
difficulty=5
|
|
),
|
|
"Great Crystal - Crystal Knight - Skull Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=2295,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A3",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Great Crystal - Crystal Knight - Skull Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Great Crystal",
|
|
address=2296,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A3",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Paramina Rift - Ancbolder - Mind Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=2297,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A4",
|
|
difficulty=5
|
|
),
|
|
"Paramina Rift - Ancbolder - Mind Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=2298,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A4",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Paramina Rift - Ancbolder - Mind Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Paramina Rift",
|
|
address=2299,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A4",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Stilshrine of Miriam - Myath - Eternal Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=2300,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A5",
|
|
difficulty=5
|
|
),
|
|
"Stilshrine of Miriam - Myath - Eternal Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=2301,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A5",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Stilshrine of Miriam - Myath - Eternal Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Stilshrine of Miriam",
|
|
address=2302,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A5",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Skullash - Clawed Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2303,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A6",
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Skullash - Clawed Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2304,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A6",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Skullash - Clawed Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2305,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A6",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Tchita Uplands - Kris - Odiferous Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=2306,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A7",
|
|
difficulty=7
|
|
),
|
|
"Tchita Uplands - Kris - Odiferous Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=2307,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A7",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Tchita Uplands - Kris - Odiferous Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=2308,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A7",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Tchita Uplands - Grimalkin - Whiskered Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=2309,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A8",
|
|
difficulty=7
|
|
),
|
|
"Tchita Uplands - Grimalkin - Whiskered Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=2310,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A8",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Tchita Uplands - Grimalkin - Whiskered Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Tchita Uplands",
|
|
address=2311,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A8",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Sochen Cave Palace Middle - Wendice - Frigid Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=2312,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A9",
|
|
difficulty=5
|
|
),
|
|
"Sochen Cave Palace Middle - Wendice - Frigid Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=2313,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A9",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Sochen Cave Palace Middle - Wendice - Frigid Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=2314,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90A9",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Sochen Cave Palace Middle - Anubys - Ensanguined Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=2315,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AA",
|
|
difficulty=7
|
|
),
|
|
"Sochen Cave Palace Middle - Anubys - Ensanguined Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=2316,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AA",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Sochen Cave Palace Middle - Anubys - Ensanguined Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Sochen Cave Palace Middle",
|
|
address=2317,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AA",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Cerobi Steppe - Bluesang - Cruel Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2318,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AB",
|
|
difficulty=7
|
|
),
|
|
"Cerobi Steppe - Bluesang - Cruel Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2319,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AB",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Cerobi Steppe - Bluesang - Cruel Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2320,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AB",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Cerobi Steppe - Aspidochelon - Adamantine Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2321,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AC",
|
|
difficulty=7
|
|
),
|
|
"Cerobi Steppe - Aspidochelon - Adamantine Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2322,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AC",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Cerobi Steppe - Aspidochelon - Adamantine Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Cerobi Steppe",
|
|
address=2323,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AC",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Ridorana Cataract - Abelisk - Reptilian Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=2324,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AD",
|
|
difficulty=7
|
|
),
|
|
"Ridorana Cataract - Abelisk - Reptilian Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=2325,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AD",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Ridorana Cataract - Abelisk - Reptilian Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Ridorana Cataract",
|
|
address=2326,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AD",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana - Avenger - Vile Trophy Reward (1)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=2327,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AE",
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana - Avenger - Vile Trophy Reward (2)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=2328,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AE",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Pharos of Ridorana - Avenger - Vile Trophy Reward (3)": FF12OpenWorldLocationData(
|
|
region="Pharos of Ridorana",
|
|
address=2329,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90AE",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Archades - Hunt Club Owner 5 Trophy Rares Defeated Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2330,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90F9",
|
|
difficulty=6
|
|
),
|
|
"Archades - Hunt Club Owner 5 Trophy Rares Defeated Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2331,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90F9",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Archades - Hunt Club Owner 5 Trophy Rares Defeated Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2332,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90F9",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Archades - Hunt Club Owner 10 Trophy Rares Defeated Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2333,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FA",
|
|
difficulty=7
|
|
),
|
|
"Archades - Hunt Club Owner 10 Trophy Rares Defeated Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2334,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FA",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Archades - Hunt Club Owner 10 Trophy Rares Defeated Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2335,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FA",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Archades - Hunt Club Owner 15 Trophy Rares Defeated Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2336,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FB",
|
|
difficulty=7
|
|
),
|
|
"Archades - Hunt Club Owner 15 Trophy Rares Defeated Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2337,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FB",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Archades - Hunt Club Owner 15 Trophy Rares Defeated Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2338,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FB",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Archades - Hunt Club Owner 20 Trophy Rares Defeated Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2339,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FC",
|
|
difficulty=8
|
|
),
|
|
"Archades - Hunt Club Owner 20 Trophy Rares Defeated Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2340,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FC",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Archades - Hunt Club Owner 20 Trophy Rares Defeated Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2341,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FC",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Archades - Hunt Club Owner 25 Trophy Rares Defeated Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2342,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FD",
|
|
difficulty=9
|
|
),
|
|
"Archades - Hunt Club Owner 25 Trophy Rares Defeated Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2343,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FD",
|
|
secondary_index=1,
|
|
difficulty=9
|
|
),
|
|
"Archades - Hunt Club Owner 25 Trophy Rares Defeated Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2344,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FD",
|
|
secondary_index=2,
|
|
difficulty=9
|
|
),
|
|
"Archades - Hunt Club Owner 30 Trophy Rares Defeated Reward (1)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2345,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FE",
|
|
difficulty=10
|
|
),
|
|
"Archades - Hunt Club Owner 30 Trophy Rares Defeated Reward (2)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2346,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FE",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Archades - Hunt Club Owner 30 Trophy Rares Defeated Reward (3)": FF12OpenWorldLocationData(
|
|
region="Archades",
|
|
address=2347,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="reward",
|
|
str_id="90FE",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Atak 16 or more Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2348,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F3",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Atak 16 or more Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2349,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F3",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Atak 16 or more Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2350,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F3",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Atak 15 or less Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2351,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F4",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Atak 15 or less Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2352,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F4",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Atak 15 or less Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2353,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F4",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Blok 16 or more Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2354,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F5",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Blok 16 or more Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2355,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F5",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Blok 16 or more Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2356,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F5",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Blok 15 or less Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2357,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F6",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Blok 15 or less Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2358,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F6",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Blok 15 or less Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2359,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F6",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Stok 16 or more Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2360,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F7",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Stok 16 or more Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2361,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F7",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Stok 16 or more Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2362,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F7",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Stok 15 or less Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2363,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F8",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Stok 15 or less Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2364,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F8",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - All Trophies Stok 15 or less Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2365,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90F8",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 1, Blok 0, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2366,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90FF",
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Atak 1, Blok 0, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2367,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90FF",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Atak 1, Blok 0, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2368,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="90FF",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Atak 0, Blok 1, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2369,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9100",
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Atak 0, Blok 1, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2370,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9100",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Atak 0, Blok 1, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2371,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9100",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 1 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2372,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9101",
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 1 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2373,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9101",
|
|
secondary_index=1,
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 1 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2374,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9101",
|
|
secondary_index=2,
|
|
difficulty=5
|
|
),
|
|
"Phon Coast - Atak 5, Blok 0, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2375,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9102",
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Atak 5, Blok 0, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2376,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9102",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Atak 5, Blok 0, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2377,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9102",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Atak 0, Blok 5, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2378,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9103",
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Atak 0, Blok 5, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2379,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9103",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Atak 0, Blok 5, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2380,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9103",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 5 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2381,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9104",
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 5 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2382,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9104",
|
|
secondary_index=1,
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 5 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2383,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9104",
|
|
secondary_index=2,
|
|
difficulty=6
|
|
),
|
|
"Phon Coast - Atak 10, Blok 0, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2384,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9105",
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 10, Blok 0, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2385,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9105",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 10, Blok 0, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2386,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9105",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 10, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2387,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9106",
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 10, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2388,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9106",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 10, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2389,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9106",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 10 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2390,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9107",
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 10 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2391,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9107",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 10 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2392,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9107",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 15, Blok 0, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2393,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9108",
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 15, Blok 0, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2394,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9108",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 15, Blok 0, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2395,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9108",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 15, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2396,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9109",
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 15, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2397,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9109",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 15, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2398,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9109",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 15 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2399,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910A",
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 15 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2400,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910A",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 15 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2401,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910A",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 10, Blok 5, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2402,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910B",
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 10, Blok 5, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2403,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910B",
|
|
secondary_index=1,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 10, Blok 5, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2404,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910B",
|
|
secondary_index=2,
|
|
difficulty=7
|
|
),
|
|
"Phon Coast - Atak 20, Blok 0, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2405,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910C",
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 20, Blok 0, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2406,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910C",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 20, Blok 0, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2407,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910C",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 0, Blok 20, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2408,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910D",
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 0, Blok 20, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2409,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910D",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 0, Blok 20, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2410,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910D",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 20 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2411,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910E",
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 20 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2412,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910E",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 20 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2413,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910E",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 5, Blok 10, Stok 5 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2414,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910F",
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 5, Blok 10, Stok 5 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2415,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910F",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 5, Blok 10, Stok 5 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2416,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="910F",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 25, Blok 0, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2417,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9110",
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 25, Blok 0, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2418,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9110",
|
|
secondary_index=1,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 25, Blok 0, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2419,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9110",
|
|
secondary_index=2,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 0, Blok 25, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2420,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9111",
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 0, Blok 25, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2421,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9111",
|
|
secondary_index=1,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 0, Blok 25, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2422,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9111",
|
|
secondary_index=2,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 25 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2423,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9112",
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 25 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2424,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9112",
|
|
secondary_index=1,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 25 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2425,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9112",
|
|
secondary_index=2,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 5, Blok 5, Stok 15 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2426,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9113",
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 5, Blok 5, Stok 15 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2427,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9113",
|
|
secondary_index=1,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 5, Blok 5, Stok 15 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2428,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9113",
|
|
secondary_index=2,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 30, Blok 0, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2429,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9114",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 30, Blok 0, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2430,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9114",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 30, Blok 0, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2431,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9114",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 0, Blok 30, Stok 0 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2432,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9115",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 0, Blok 30, Stok 0 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2433,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9115",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 0, Blok 30, Stok 0 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2434,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9115",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 30 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2435,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9116",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 30 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2436,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9116",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 0, Blok 0, Stok 30 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2437,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9116",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 10, Blok 10, Stok 10 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2438,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9117",
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 10, Blok 10, Stok 10 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2439,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9117",
|
|
secondary_index=1,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 10, Blok 10, Stok 10 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2440,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9117",
|
|
secondary_index=2,
|
|
difficulty=10
|
|
),
|
|
"Phon Coast - Atak 25, Blok 1, Stok 1 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2441,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9118",
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 25, Blok 1, Stok 1 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2442,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9118",
|
|
secondary_index=1,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 25, Blok 1, Stok 1 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2443,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9118",
|
|
secondary_index=2,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 1, Blok 25, Stok 1 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2444,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9119",
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 1, Blok 25, Stok 1 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2445,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9119",
|
|
secondary_index=1,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 1, Blok 25, Stok 1 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2446,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="9119",
|
|
secondary_index=2,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 1, Blok 1, Stok 25 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2447,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911A",
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 1, Blok 1, Stok 25 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2448,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911A",
|
|
secondary_index=1,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 1, Blok 1, Stok 25 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2449,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911A",
|
|
secondary_index=2,
|
|
difficulty=9
|
|
),
|
|
"Phon Coast - Atak 12, Blok 5, Stok 5 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2450,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911B",
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 12, Blok 5, Stok 5 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2451,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911B",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 12, Blok 5, Stok 5 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2452,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911B",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 5, Blok 12, Stok 5 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2453,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911C",
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 5, Blok 12, Stok 5 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2454,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911C",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 5, Blok 12, Stok 5 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2455,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911C",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 5, Blok 5, Stok 12 Outfitters Reward (1)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2456,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911D",
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 5, Blok 5, Stok 12 Outfitters Reward (2)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2457,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911D",
|
|
secondary_index=1,
|
|
difficulty=8
|
|
),
|
|
"Phon Coast - Atak 5, Blok 5, Stok 12 Outfitters Reward (3)": FF12OpenWorldLocationData(
|
|
region="Phon Coast",
|
|
address=2458,
|
|
classification=LocationProgressType.EXCLUDED,
|
|
type="reward",
|
|
str_id="911D",
|
|
secondary_index=2,
|
|
difficulty=8
|
|
),
|
|
"Vaan's Starting Items (1)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2459,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="0"
|
|
),
|
|
"Vaan's Starting Items (2)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2460,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="0",
|
|
secondary_index=1
|
|
),
|
|
"Vaan's Starting Items (3)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2461,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="0",
|
|
secondary_index=2
|
|
),
|
|
"Vaan's Starting Items (4)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2462,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="0",
|
|
secondary_index=3
|
|
),
|
|
"Vaan's Starting Items (5)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2463,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="0",
|
|
secondary_index=4
|
|
),
|
|
"Vaan's Starting Items (6)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2464,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="0",
|
|
secondary_index=5
|
|
),
|
|
"Vaan's Starting Items (7)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2465,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="0",
|
|
secondary_index=6
|
|
),
|
|
"Vaan's Starting Items (8)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2466,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="0",
|
|
secondary_index=7
|
|
),
|
|
"Vaan's Starting Items (9)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2467,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="0",
|
|
secondary_index=8
|
|
),
|
|
"Ashe's Starting Items (1)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2468,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="1"
|
|
),
|
|
"Ashe's Starting Items (2)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2469,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="1",
|
|
secondary_index=1
|
|
),
|
|
"Ashe's Starting Items (3)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2470,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="1",
|
|
secondary_index=2
|
|
),
|
|
"Ashe's Starting Items (4)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2471,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="1",
|
|
secondary_index=3
|
|
),
|
|
"Ashe's Starting Items (5)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2472,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="1",
|
|
secondary_index=4
|
|
),
|
|
"Ashe's Starting Items (6)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2473,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="1",
|
|
secondary_index=5
|
|
),
|
|
"Ashe's Starting Items (7)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2474,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="1",
|
|
secondary_index=6
|
|
),
|
|
"Ashe's Starting Items (8)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2475,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="1",
|
|
secondary_index=7
|
|
),
|
|
"Ashe's Starting Items (9)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2476,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="1",
|
|
secondary_index=8
|
|
),
|
|
"Fran's Starting Items (1)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2477,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="2"
|
|
),
|
|
"Fran's Starting Items (2)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2478,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="2",
|
|
secondary_index=1
|
|
),
|
|
"Fran's Starting Items (3)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2479,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="2",
|
|
secondary_index=2
|
|
),
|
|
"Fran's Starting Items (4)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2480,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="2",
|
|
secondary_index=3
|
|
),
|
|
"Fran's Starting Items (5)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2481,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="2",
|
|
secondary_index=4
|
|
),
|
|
"Fran's Starting Items (6)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2482,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="2",
|
|
secondary_index=5
|
|
),
|
|
"Fran's Starting Items (7)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2483,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="2",
|
|
secondary_index=6
|
|
),
|
|
"Fran's Starting Items (8)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2484,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="2",
|
|
secondary_index=7
|
|
),
|
|
"Fran's Starting Items (9)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2485,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="2",
|
|
secondary_index=8
|
|
),
|
|
"Balthier's Starting Items (1)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2486,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="3"
|
|
),
|
|
"Balthier's Starting Items (2)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2487,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="3",
|
|
secondary_index=1
|
|
),
|
|
"Balthier's Starting Items (3)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2488,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="3",
|
|
secondary_index=2
|
|
),
|
|
"Balthier's Starting Items (4)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2489,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="3",
|
|
secondary_index=3
|
|
),
|
|
"Balthier's Starting Items (5)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2490,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="3",
|
|
secondary_index=4
|
|
),
|
|
"Balthier's Starting Items (6)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2491,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="3",
|
|
secondary_index=5
|
|
),
|
|
"Balthier's Starting Items (7)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2492,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="3",
|
|
secondary_index=6
|
|
),
|
|
"Balthier's Starting Items (8)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2493,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="3",
|
|
secondary_index=7
|
|
),
|
|
"Balthier's Starting Items (9)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2494,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="3",
|
|
secondary_index=8
|
|
),
|
|
"Basch's Starting Items (1)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2495,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="4"
|
|
),
|
|
"Basch's Starting Items (2)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2496,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="4",
|
|
secondary_index=1
|
|
),
|
|
"Basch's Starting Items (3)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2497,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="4",
|
|
secondary_index=2
|
|
),
|
|
"Basch's Starting Items (4)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2498,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="4",
|
|
secondary_index=3
|
|
),
|
|
"Basch's Starting Items (5)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2499,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="4",
|
|
secondary_index=4
|
|
),
|
|
"Basch's Starting Items (6)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2500,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="4",
|
|
secondary_index=5
|
|
),
|
|
"Basch's Starting Items (7)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2501,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="4",
|
|
secondary_index=6
|
|
),
|
|
"Basch's Starting Items (8)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2502,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="4",
|
|
secondary_index=7
|
|
),
|
|
"Basch's Starting Items (9)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2503,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="4",
|
|
secondary_index=8
|
|
),
|
|
"Penelo's Starting Items (1)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2504,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="5"
|
|
),
|
|
"Penelo's Starting Items (2)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2505,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="5",
|
|
secondary_index=1
|
|
),
|
|
"Penelo's Starting Items (3)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2506,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="5",
|
|
secondary_index=2
|
|
),
|
|
"Penelo's Starting Items (4)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2507,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="5",
|
|
secondary_index=3
|
|
),
|
|
"Penelo's Starting Items (5)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2508,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="5",
|
|
secondary_index=4
|
|
),
|
|
"Penelo's Starting Items (6)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2509,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="5",
|
|
secondary_index=5
|
|
),
|
|
"Penelo's Starting Items (7)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2510,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="5",
|
|
secondary_index=6
|
|
),
|
|
"Penelo's Starting Items (8)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2511,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="5",
|
|
secondary_index=7
|
|
),
|
|
"Penelo's Starting Items (9)": FF12OpenWorldLocationData(
|
|
region="Initial",
|
|
address=2512,
|
|
classification=LocationProgressType.DEFAULT,
|
|
type="inventory",
|
|
str_id="5",
|
|
secondary_index=8
|
|
),
|
|
}
|
|
|
|
location_table = {location_name: location_data.address for location_name, location_data in location_data_table.items()} |