summary refs log tree commit diff stats
path: root/options.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-03-22 15:28:41 -0500
committerGitHub <noreply@github.com>2024-03-22 21:28:41 +0100
commit9c6e33c7869d28b8fa1b3349c9a59a40aa8c1526 (patch)
tree2476ec2b334184139bb536337d1d9bd7a7b3591c /options.py
parentf17c4acbe9364178787888a91a6e40f8216363e8 (diff)
downloadlingo-apworld-9c6e33c7869d28b8fa1b3349c9a59a40aa8c1526.tar.gz
lingo-apworld-9c6e33c7869d28b8fa1b3349c9a59a40aa8c1526.tar.bz2
lingo-apworld-9c6e33c7869d28b8fa1b3349c9a59a40aa8c1526.zip
Lingo: Add trap weights option (#2837)
Diffstat (limited to 'options.py')
-rw-r--r--options.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/options.py b/options.py index ed14264..293992a 100644 --- a/options.py +++ b/options.py
@@ -1,6 +1,9 @@
1from dataclasses import dataclass 1from dataclasses import dataclass
2 2
3from Options import Toggle, Choice, DefaultOnToggle, Range, PerGameCommonOptions, StartInventoryPool 3from schema import And, Schema
4
5from Options import Toggle, Choice, DefaultOnToggle, Range, PerGameCommonOptions, StartInventoryPool, OptionDict
6from worlds.lingo.items import TRAP_ITEMS
4 7
5 8
6class ShuffleDoors(Choice): 9class ShuffleDoors(Choice):
@@ -107,6 +110,14 @@ class TrapPercentage(Range):
107 default = 20 110 default = 20
108 111
109 112
113class TrapWeights(OptionDict):
114 """Specify the distribution of traps that should be placed into the pool.
115 If you don't want a specific type of trap, set the weight to zero."""
116 display_name = "Trap Weights"
117 schema = Schema({trap_name: And(int, lambda n: n >= 0) for trap_name in TRAP_ITEMS})
118 default = {trap_name: 1 for trap_name in TRAP_ITEMS}
119
120
110class PuzzleSkipPercentage(Range): 121class PuzzleSkipPercentage(Range):
111 """Replaces junk items with puzzle skips, at the specified rate.""" 122 """Replaces junk items with puzzle skips, at the specified rate."""
112 display_name = "Puzzle Skip Percentage" 123 display_name = "Puzzle Skip Percentage"
@@ -134,6 +145,7 @@ class LingoOptions(PerGameCommonOptions):
134 level_2_requirement: Level2Requirement 145 level_2_requirement: Level2Requirement
135 early_color_hallways: EarlyColorHallways 146 early_color_hallways: EarlyColorHallways
136 trap_percentage: TrapPercentage 147 trap_percentage: TrapPercentage
148 trap_weights: TrapWeights
137 puzzle_skip_percentage: PuzzleSkipPercentage 149 puzzle_skip_percentage: PuzzleSkipPercentage
138 death_link: DeathLink 150 death_link: DeathLink
139 start_inventory_from_pool: StartInventoryPool 151 start_inventory_from_pool: StartInventoryPool