2021-11-28 14:32:08 -07:00
|
|
|
from typing import Dict
|
|
|
|
|
|
|
|
from Options import OptionDict
|
|
|
|
|
|
|
|
|
|
|
|
class Locations(OptionDict):
|
2023-03-09 18:15:58 -06:00
|
|
|
"""to roll settings go to https://finalfantasyrandomizer.com/"""
|
2022-02-02 16:29:29 +01:00
|
|
|
display_name = "locations"
|
2021-11-28 14:32:08 -07:00
|
|
|
|
|
|
|
|
|
|
|
class Items(OptionDict):
|
2023-03-09 18:15:58 -06:00
|
|
|
"""to roll settings go to https://finalfantasyrandomizer.com/"""
|
2022-02-02 16:29:29 +01:00
|
|
|
display_name = "items"
|
2021-11-28 14:32:08 -07:00
|
|
|
|
|
|
|
|
|
|
|
class Rules(OptionDict):
|
2023-03-09 18:15:58 -06:00
|
|
|
"""to roll settings go to https://finalfantasyrandomizer.com/"""
|
2022-02-02 16:29:29 +01:00
|
|
|
display_name = "rules"
|
2021-11-28 14:32:08 -07:00
|
|
|
|
|
|
|
|
|
|
|
ff1_options: Dict[str, OptionDict] = {
|
|
|
|
"locations": Locations,
|
|
|
|
"items": Items,
|
|
|
|
"rules": Rules
|
|
|
|
}
|