Bomb Rush Cyberfunk: Implement new game (#2925)

Adds Team Reptile's Bomb Rush Cyberfunk as a new game.
This commit is contained in:
Trevor L
2024-05-17 04:13:40 -06:00
committed by GitHub
parent 2447be92d8
commit 68323b46a9
14 changed files with 3296 additions and 0 deletions

View 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
}