about summary refs log tree commit diff stats
path: root/tools/assign_ids
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-08-14 15:14:48 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-08-14 15:14:48 -0400
commitd958b3415ad31bb9b94235c486a4eada3acfdecc (patch)
treeb419109509d40d45bc63c94f8853c2200c30021e /tools/assign_ids
parent8662f88dfe0d7f2a9090037a92a8d1d761614a8c (diff)
downloadlingo2-archipelago-d958b3415ad31bb9b94235c486a4eada3acfdecc.tar.gz
lingo2-archipelago-d958b3415ad31bb9b94235c486a4eada3acfdecc.tar.bz2
lingo2-archipelago-d958b3415ad31bb9b94235c486a4eada3acfdecc.zip
Added the_hinterlands
Diffstat (limited to 'tools/assign_ids')
0 files changed, 0 insertions, 0 deletions
ighlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
from dataclasses import dataclass

from Options import PerGameCommonOptions, Toggle, Choice


class ShuffleDoors(Toggle):
    """If enabled, most doors will open from receiving an item rather than fulfilling the in-game requirements."""
    display_name = "Shuffle Doors"


class VictoryCondition(Choice):
    """Victory condition."""
    display_name = "Victory Condition"
    option_gray_ending = 0
    option_purple_ending = 1
    option_mint_ending = 2
    option_black_ending = 3
    option_blue_ending = 4
    option_cyan_ending = 5
    option_red_ending = 6
    option_plum_ending = 7
    option_orange_ending = 8
    option_gold_ending = 9
    option_yellow_ending = 10
    option_green_ending = 11
    option_white_ending = 12


@dataclass
class Lingo2Options(PerGameCommonOptions):
    shuffle_doors: ShuffleDoors
    victory_condition: VictoryCondition