The Witness: Death Link + Small bug fixes (#1515)

* Fully functional DeathLink implementation. But it's always on right now :D

* Death Link options. Last commit: All entity names being sent through slot_data

* Tutorial Gate Close logic fix

* Improved option tooltip wording

* Fixed shuffle_postgame: false not excluding some locations

* Link to latest stable client rather than full releases page
This commit is contained in:
NewSoupVi
2023-03-10 07:58:00 +01:00
committed by GitHub
parent 7fdf38b2ad
commit b1599c557f
8 changed files with 22 additions and 12 deletions

View File

@@ -158,6 +158,12 @@ class HintAmount(Range):
default = 10
class DeathLink(Toggle):
"""If on: Whenever you fail a puzzle (with some exceptions), everyone who is also on Death Link dies.
The effect of a "death" in The Witness is a Power Surge."""
display_name = "Death Link"
the_witness_options: Dict[str, type] = {
"puzzle_randomization": PuzzleRandomization,
"shuffle_symbols": ShuffleSymbols,
@@ -176,6 +182,7 @@ the_witness_options: Dict[str, type] = {
"trap_percentage": TrapPercentage,
"puzzle_skip_amount": PuzzleSkipAmount,
"hint_amount": HintAmount,
"death_link": DeathLink,
}