forked from ArchipelagoMW/Archipelago
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs update to 0.2.0, and added deathlink and recipe shuffle options
- Loading branch information
1 parent
7a5314d
commit df7d41d
Showing
4 changed files
with
48 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
from dataclasses import dataclass | ||
from Options import Toggle, PerGameCommonOptions | ||
from Options import Choice, PerGameCommonOptions | ||
|
||
class LogicDifficulty(Toggle): | ||
"""How minimal the logic should be.""" | ||
display_name = "Logic Difficulty" | ||
class RecipeShuffle(Choice): | ||
"""Enable production building recipe shuffle. Can skip Crude WS for less frustrating seeds.""" | ||
display_name = "Recipe Shuffle" | ||
option_vanilla = 0 | ||
option_exclude_crude_ws = 1 | ||
option_full_shuffle = 2 | ||
default = 0 | ||
|
||
class Deathlink(Toggle): | ||
"""Enable death link.""" | ||
class Deathlink(Choice): | ||
"""Enable death link. Can send on villager leaving and/or death.""" | ||
display_name = "Death Link" | ||
option_off = 0 | ||
option_death_only = 1 | ||
option_leave_and_death = 2 | ||
default = 0 | ||
|
||
@dataclass | ||
class AgainstTheStormOptions(PerGameCommonOptions): | ||
# logic_difficulty: LogicDifficulty | ||
recipe_shuffle: RecipeShuffle | ||
deathlink: Deathlink |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters