Update options to look better on webhost after update, also give death link a description (#3329)
This commit is contained in:
parent
cd160842ba
commit
02d3fdf2a6
|
@ -3,11 +3,13 @@ from dataclasses import dataclass
|
|||
|
||||
|
||||
class PathOption(Choice):
|
||||
"""Choose where you would like Hidden Chest and Pedestal checks to be placed.
|
||||
"""
|
||||
Choose where you would like Hidden Chest and Pedestal checks to be placed.
|
||||
Main Path includes the main 7 biomes you typically go through to get to the final boss.
|
||||
Side Path includes the Lukki Lair and Fungal Caverns. 9 biomes total.
|
||||
Main World includes the full world (excluding parallel worlds). 15 biomes total.
|
||||
Note: The Collapsed Mines have been combined into the Mines as the biome is tiny."""
|
||||
Note: The Collapsed Mines have been combined into the Mines as the biome is tiny.
|
||||
"""
|
||||
display_name = "Path Option"
|
||||
option_main_path = 1
|
||||
option_side_path = 2
|
||||
|
@ -16,7 +18,9 @@ class PathOption(Choice):
|
|||
|
||||
|
||||
class HiddenChests(Range):
|
||||
"""Number of hidden chest checks added to the applicable biomes."""
|
||||
"""
|
||||
Number of hidden chest checks added to the applicable biomes.
|
||||
"""
|
||||
display_name = "Hidden Chests per Biome"
|
||||
range_start = 0
|
||||
range_end = 20
|
||||
|
@ -24,7 +28,9 @@ class HiddenChests(Range):
|
|||
|
||||
|
||||
class PedestalChecks(Range):
|
||||
"""Number of checks that will spawn on pedestals in the applicable biomes."""
|
||||
"""
|
||||
Number of checks that will spawn on pedestals in the applicable biomes.
|
||||
"""
|
||||
display_name = "Pedestal Checks per Biome"
|
||||
range_start = 0
|
||||
range_end = 20
|
||||
|
@ -32,15 +38,19 @@ class PedestalChecks(Range):
|
|||
|
||||
|
||||
class Traps(DefaultOnToggle):
|
||||
"""Whether negative effects on the Noita world are added to the item pool."""
|
||||
"""
|
||||
Whether negative effects on the Noita world are added to the item pool.
|
||||
"""
|
||||
display_name = "Traps"
|
||||
|
||||
|
||||
class OrbsAsChecks(Choice):
|
||||
"""Decides whether finding the orbs that naturally spawn in the world count as checks.
|
||||
"""
|
||||
Decides whether finding the orbs that naturally spawn in the world count as checks.
|
||||
The Main Path option includes only the Floating Island and Abyss Orb Room orbs.
|
||||
The Side Path option includes the Main Path, Magical Temple, Lukki Lair, and Lava Lake orbs.
|
||||
The Main World option includes all 11 orbs."""
|
||||
The Main World option includes all 11 orbs.
|
||||
"""
|
||||
display_name = "Orbs as Location Checks"
|
||||
option_no_orbs = 0
|
||||
option_main_path = 1
|
||||
|
@ -50,10 +60,12 @@ class OrbsAsChecks(Choice):
|
|||
|
||||
|
||||
class BossesAsChecks(Choice):
|
||||
"""Makes bosses count as location checks. The boss only needs to die, you do not need the kill credit.
|
||||
"""
|
||||
Makes bosses count as location checks. The boss only needs to die, you do not need the kill credit.
|
||||
The Main Path option includes Gate Guardian, Suomuhauki, and Kolmisilmä.
|
||||
The Side Path option includes the Main Path bosses, Sauvojen Tuntija, and Ylialkemisti.
|
||||
The All Bosses option includes all 15 bosses."""
|
||||
The All Bosses option includes all 15 bosses.
|
||||
"""
|
||||
display_name = "Bosses as Location Checks"
|
||||
option_no_bosses = 0
|
||||
option_main_path = 1
|
||||
|
@ -65,11 +77,13 @@ class BossesAsChecks(Choice):
|
|||
# Note: the Sampo is an item that is picked up to trigger the boss fight at the normal ending location.
|
||||
# The sampo is required for every ending (having orbs and bringing the sampo to a different spot changes the ending).
|
||||
class VictoryCondition(Choice):
|
||||
"""Greed is to get to the bottom, beat the boss, and win the game.
|
||||
"""
|
||||
Greed is to get to the bottom, beat the boss, and win the game.
|
||||
Pure is to get 11 orbs, grab the sampo, and bring it to the mountain altar.
|
||||
Peaceful is to get all 33 orbs, grab the sampo, and bring it to the mountain altar.
|
||||
Orbs will be added to the randomizer pool based on which victory condition you chose.
|
||||
The base game orbs will not count towards these victory conditions."""
|
||||
The base game orbs will not count towards these victory conditions.
|
||||
"""
|
||||
display_name = "Victory Condition"
|
||||
option_greed_ending = 0
|
||||
option_pure_ending = 1
|
||||
|
@ -78,9 +92,11 @@ class VictoryCondition(Choice):
|
|||
|
||||
|
||||
class ExtraOrbs(Range):
|
||||
"""Add extra orbs to your item pool, to prevent you from needing to wait as long for the last orb you need for your victory condition.
|
||||
"""
|
||||
Add extra orbs to your item pool, to prevent you from needing to wait as long for the last orb you need for your victory condition.
|
||||
Extra orbs received past your victory condition's amount will be received as hearts instead.
|
||||
Can be turned on for the Greed Ending goal, but will only really make it harder."""
|
||||
Can be turned on for the Greed Ending goal, but will only really make it harder.
|
||||
"""
|
||||
display_name = "Extra Orbs"
|
||||
range_start = 0
|
||||
range_end = 10
|
||||
|
@ -88,8 +104,10 @@ class ExtraOrbs(Range):
|
|||
|
||||
|
||||
class ShopPrice(Choice):
|
||||
"""Reduce the costs of Archipelago items in shops.
|
||||
By default, the price of Archipelago items matches the price of wands at that shop."""
|
||||
"""
|
||||
Reduce the costs of Archipelago items in shops.
|
||||
By default, the price of Archipelago items matches the price of wands at that shop.
|
||||
"""
|
||||
display_name = "Shop Price Reduction"
|
||||
option_full_price = 100
|
||||
option_25_percent_off = 75
|
||||
|
@ -98,10 +116,17 @@ class ShopPrice(Choice):
|
|||
default = 100
|
||||
|
||||
|
||||
class NoitaDeathLink(DeathLink):
|
||||
"""
|
||||
When you die, everyone dies. Of course, the reverse is true too.
|
||||
You can disable this in the in-game mod options.
|
||||
"""
|
||||
|
||||
|
||||
@dataclass
|
||||
class NoitaOptions(PerGameCommonOptions):
|
||||
start_inventory_from_pool: StartInventoryPool
|
||||
death_link: DeathLink
|
||||
death_link: NoitaDeathLink
|
||||
bad_effects: Traps
|
||||
victory_condition: VictoryCondition
|
||||
path_option: PathOption
|
||||
|
|
Loading…
Reference in New Issue