TUNIC: Implement support for connection plando (#2864)

This commit is contained in:
Scipio Wright
2024-03-15 12:52:05 -04:00
committed by GitHub
parent 2a8784ef72
commit e6198585c8
7 changed files with 150 additions and 121 deletions

View File

@@ -1,6 +1,6 @@
from dataclasses import dataclass
from Options import DefaultOnToggle, Toggle, StartInventoryPool, Choice, Range, PerGameCommonOptions
from Options import DefaultOnToggle, Toggle, StartInventoryPool, Choice, Range, TextChoice, PerGameCommonOptions
class SwordProgression(DefaultOnToggle):
@@ -104,11 +104,17 @@ class ExtraHexagonPercentage(Range):
default = 50
class EntranceRando(Toggle):
class EntranceRando(TextChoice):
"""Randomize the connections between scenes.
You can choose a custom seed by editing this option.
A small, very lost fox on a big adventure."""
internal_name = "entrance_rando"
display_name = "Entrance Rando"
alias_false = 0
option_no = 0
alias_true = 1
option_yes = 1
default = 0
class FixedShop(Toggle):