mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Bomb Rush Cyberfunk: Implement new game (#2925)
Adds Team Reptile's Bomb Rush Cyberfunk as a new game.
This commit is contained in:
29
worlds/bomb_rush_cyberfunk/test/test_options.py
Normal file
29
worlds/bomb_rush_cyberfunk/test/test_options.py
Normal file
@@ -0,0 +1,29 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user