mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06: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
|
|
} |