mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-11-07 17:36:00 +00:00
\n
This commit is contained in:
parent
c9f36b45b4
commit
9ec7242e93
2 changed files with 15 additions and 22 deletions
|
|
@ -1311,7 +1311,7 @@
|
|||
}
|
||||
},
|
||||
"explodo_run": {
|
||||
"description": "Run For Your Life :))",
|
||||
"description": "Cursed meteor shower of crazy Captain Jack trying take your soul",
|
||||
"external_url": "",
|
||||
"authors": [
|
||||
{
|
||||
|
|
@ -1321,12 +1321,7 @@
|
|||
}
|
||||
],
|
||||
"versions": {
|
||||
"1.0.0": {
|
||||
"api_version": 8,
|
||||
"commit_sha": "4941d0c",
|
||||
"released_on": "01-02-2024",
|
||||
"md5sum": "af5022d1f78887e0ac2b0cfc37f4f04a"
|
||||
}
|
||||
"1.0.0": null
|
||||
}
|
||||
},
|
||||
"extinction": {
|
||||
|
|
@ -1349,7 +1344,7 @@
|
|||
}
|
||||
},
|
||||
"fat_pigs": {
|
||||
"description": "Survive...",
|
||||
"description": "Eliminate other Mels' while dodging falling stickies.",
|
||||
"external_url": "",
|
||||
"authors": [
|
||||
{
|
||||
|
|
@ -1359,16 +1354,11 @@
|
|||
}
|
||||
],
|
||||
"versions": {
|
||||
"1.0.0": {
|
||||
"api_version": 8,
|
||||
"commit_sha": "4941d0c",
|
||||
"released_on": "01-02-2024",
|
||||
"md5sum": "fe0d82c322ce01d8956af3131e135ad2"
|
||||
}
|
||||
"1.0.0": null
|
||||
}
|
||||
},
|
||||
"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",
|
||||
"authors": [
|
||||
{
|
||||
|
|
@ -1378,12 +1368,7 @@
|
|||
}
|
||||
],
|
||||
"versions": {
|
||||
"1.0.0": {
|
||||
"api_version": 8,
|
||||
"commit_sha": "4941d0c",
|
||||
"released_on": "01-02-2024",
|
||||
"md5sum": "e11fbf742e6556939ac8d986e2dd430b"
|
||||
}
|
||||
"1.0.0": null
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,8 +51,15 @@ class ExplodoRunGame(bs.TeamGameActivity[Player, Team]):
|
|||
scoreconfig = bs.ScoreConfig(label='Time',
|
||||
scoretype=bs.ScoreType.MILLISECONDS,
|
||||
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):
|
||||
settings['map'] = "Rampage"
|
||||
self._epic_mode = settings.get('Epic Mode', False)
|
||||
|
|
@ -64,6 +71,7 @@ class ExplodoRunGame(bs.TeamGameActivity[Player, Team]):
|
|||
self._won = False
|
||||
self._bots = SpazBotSet()
|
||||
self.wave = 1
|
||||
self.default_music = bs.MusicType.TO_THE_DEATH
|
||||
|
||||
def on_begin(self) -> None:
|
||||
super().on_begin()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue