This commit is contained in:
brostosjoined 2024-02-01 20:46:32 +03:00
parent c9f36b45b4
commit 9ec7242e93
2 changed files with 15 additions and 22 deletions

View file

@ -1311,7 +1311,7 @@
} }
}, },
"explodo_run": { "explodo_run": {
"description": "Run For Your Life :))", "description": "Cursed meteor shower of crazy Captain Jack trying take your soul",
"external_url": "", "external_url": "",
"authors": [ "authors": [
{ {
@ -1321,12 +1321,7 @@
} }
], ],
"versions": { "versions": {
"1.0.0": { "1.0.0": null
"api_version": 8,
"commit_sha": "4941d0c",
"released_on": "01-02-2024",
"md5sum": "af5022d1f78887e0ac2b0cfc37f4f04a"
}
} }
}, },
"extinction": { "extinction": {
@ -1349,7 +1344,7 @@
} }
}, },
"fat_pigs": { "fat_pigs": {
"description": "Survive...", "description": "Eliminate other Mels' while dodging falling stickies.",
"external_url": "", "external_url": "",
"authors": [ "authors": [
{ {
@ -1359,16 +1354,11 @@
} }
], ],
"versions": { "versions": {
"1.0.0": { "1.0.0": null
"api_version": 8,
"commit_sha": "4941d0c",
"released_on": "01-02-2024",
"md5sum": "fe0d82c322ce01d8956af3131e135ad2"
}
} }
}, },
"flag_day": { "flag_day": {
"description": "Pick up flags to receive a prize.\nBut beware...", "description": "Pick up flags to receive a prize.But beware...",
"external_url": "https://youtu.be/ANDzdBicjA4?si=h8S_TPUAxSaG7nls", "external_url": "https://youtu.be/ANDzdBicjA4?si=h8S_TPUAxSaG7nls",
"authors": [ "authors": [
{ {
@ -1378,12 +1368,7 @@
} }
], ],
"versions": { "versions": {
"1.0.0": { "1.0.0": null
"api_version": 8,
"commit_sha": "4941d0c",
"released_on": "01-02-2024",
"md5sum": "e11fbf742e6556939ac8d986e2dd430b"
}
} }
} }
} }

View file

@ -51,7 +51,14 @@ class ExplodoRunGame(bs.TeamGameActivity[Player, Team]):
scoreconfig = bs.ScoreConfig(label='Time', scoreconfig = bs.ScoreConfig(label='Time',
scoretype=bs.ScoreType.MILLISECONDS, scoretype=bs.ScoreType.MILLISECONDS,
lower_is_better=False) lower_is_better=False)
default_music = bs.MusicType.TO_THE_DEATH
@classmethod
def get_preview_texture_name(cls) -> str:
return 'rampagePreview'
@classmethod
def get_supported_maps(cls, sessiontype: type[bs.Session]) -> list[str]:
return ['Rampage']
def __init__(self, settings: dict): def __init__(self, settings: dict):
settings['map'] = "Rampage" settings['map'] = "Rampage"
@ -64,6 +71,7 @@ class ExplodoRunGame(bs.TeamGameActivity[Player, Team]):
self._won = False self._won = False
self._bots = SpazBotSet() self._bots = SpazBotSet()
self.wave = 1 self.wave = 1
self.default_music = bs.MusicType.TO_THE_DEATH
def on_begin(self) -> None: def on_begin(self) -> None:
super().on_begin() super().on_begin()