mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-26 11:43:22 -07:00
29 lines
641 B
Python
29 lines
641 B
Python
from . import BombRushCyberfunkTestBase
|
|
|
|
|
|
class TestRegularGraffitiGlitchless(BombRushCyberfunkTestBase):
|
|
options = {
|
|
"logic": "glitchless",
|
|
"limited_graffiti": False
|
|
}
|
|
|
|
|
|
class TestLimitedGraffitiGlitchless(BombRushCyberfunkTestBase):
|
|
options = {
|
|
"logic": "glitchless",
|
|
"limited_graffiti": True
|
|
}
|
|
|
|
|
|
class TestRegularGraffitiGlitched(BombRushCyberfunkTestBase):
|
|
options = {
|
|
"logic": "glitched",
|
|
"limited_graffiti": False
|
|
}
|
|
|
|
|
|
class TestLimitedGraffitiGlitched(BombRushCyberfunkTestBase):
|
|
options = {
|
|
"logic": "glitched",
|
|
"limited_graffiti": True
|
|
} |