about summary refs log tree commit diff stats
path: root/data/maps/the_great/rooms/Maze In Area.txtpb
blob: 8c556aab8f67eaed6c22d63e2479dda67734bde7 (plain) (blame)
1
2
3
4
5
6
7
8
9
name: "Maze In Area"
panel_display_name: "Courtyard"
panels {
  name: "IN"
  path: "Panels/Maze/maze_3"
  clue: "in"
  answer: "out"
  symbols: SUN
}
: #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 . import LingoTestBase


class TestMultiShuffleOptions(LingoTestBase):
    options = {
        "shuffle_doors": "complex",
        "progressive_orange_tower": "true",
        "shuffle_colors": "true",
        "shuffle_paintings": "true",
        "early_color_hallways": "true"
    }


class TestPanelsanity(LingoTestBase):
    options = {
        "shuffle_doors": "complex",
        "progressive_orange_tower": "true",
        "location_checks": "insanity",
        "shuffle_colors": "true"
    }


class TestAllPanelHunt(LingoTestBase):
    options = {
        "shuffle_doors": "complex",
        "progressive_orange_tower": "true",
        "shuffle_colors": "true",
        "victory_condition": "level_2",
        "level_2_requirement": "800",
        "early_color_hallways": "true"
    }


class TestShuffleSunwarps(LingoTestBase):
    options = {
        "shuffle_doors": "none",
        "shuffle_colors": "false",
        "victory_condition": "pilgrimage",
        "shuffle_sunwarps": "true",
        "sunwarp_access": "normal"
    }


class TestShuffleSunwarpsAccess(LingoTestBase):
    options = {
        "shuffle_doors": "none",
        "shuffle_colors": "false",
        "victory_condition": "pilgrimage",
        "shuffle_sunwarps": "true",
        "sunwarp_access": "individual"
    }