[ci] auto-format

This commit is contained in:
brostosjoined 2024-01-24 18:17:42 +00:00 committed by github-actions[bot]
parent fcd4cc8169
commit 89295db5cc

View file

@ -36,6 +36,7 @@ else:
# def ba_get_api_version(): # def ba_get_api_version():
# return 6 # return 6
def ba_get_levels(): def ba_get_levels():
return [babase._level.Level( return [babase._level.Level(
name_easy, name_easy,
@ -61,86 +62,104 @@ def ba_get_levels():
preview_texture_name='footballStadiumPreview')] preview_texture_name='footballStadiumPreview')]
#### BOTS #### #### BOTS ####
class SpazBot(BrawlerBot): class SpazBot(BrawlerBot):
character = 'Spaz' character = 'Spaz'
color = (0.1, 0.35, 0.1) color = (0.1, 0.35, 0.1)
highlight = (1, 0.15, 0.15) highlight = (1, 0.15, 0.15)
class ZoeBot(BrawlerBot): class ZoeBot(BrawlerBot):
character = 'Zoe' character = 'Zoe'
color = (0.6, 0.6, 0.6) color = (0.6, 0.6, 0.6)
highlight = (0, 1, 0) highlight = (0, 1, 0)
class SnakeBot(BrawlerBot): class SnakeBot(BrawlerBot):
character = 'Snake Shadow' character = 'Snake Shadow'
color = (1, 1, 1) color = (1, 1, 1)
highlight = (0.55, 0.8, 0.55) highlight = (0.55, 0.8, 0.55)
class MelBot(BrawlerBot): class MelBot(BrawlerBot):
character = 'Mel' character = 'Mel'
color = (1, 1, 1) color = (1, 1, 1)
highlight = (0.1, 0.6, 0.1) highlight = (0.1, 0.6, 0.1)
class JackBot(BrawlerBot): class JackBot(BrawlerBot):
character = 'Jack Morgan' character = 'Jack Morgan'
color = (1, 0.2, 0.1) color = (1, 0.2, 0.1)
highlight = (1, 1, 0) highlight = (1, 1, 0)
class SantaBot(BrawlerBot): class SantaBot(BrawlerBot):
character = 'Santa Claus' character = 'Santa Claus'
color = (1, 0, 0) color = (1, 0, 0)
highlight = (1, 1, 1) highlight = (1, 1, 1)
class FrostyBot(BrawlerBot): class FrostyBot(BrawlerBot):
character = 'Frosty' character = 'Frosty'
color = (0.5, 0.5, 1) color = (0.5, 0.5, 1)
highlight = (1, 0.5, 0) highlight = (1, 0.5, 0)
class BonesBot(BrawlerBot): class BonesBot(BrawlerBot):
character = 'Bones' character = 'Bones'
color = (0.6, 0.9, 1) color = (0.6, 0.9, 1)
highlight = (0.6, 0.9, 1) highlight = (0.6, 0.9, 1)
class BernardBot(BrawlerBot): class BernardBot(BrawlerBot):
character = 'Bernard' character = 'Bernard'
color = (0.7, 0.5, 0.0) color = (0.7, 0.5, 0.0)
highlight = (0.6, 0.5, 0.8) highlight = (0.6, 0.5, 0.8)
class PascalBot(BrawlerBot): class PascalBot(BrawlerBot):
character = 'Pascal' character = 'Pascal'
color = (0.3, 0.5, 0.8) color = (0.3, 0.5, 0.8)
highlight = (1, 0, 0) highlight = (1, 0, 0)
class TaobaoBot(BrawlerBot): class TaobaoBot(BrawlerBot):
character = 'Taobao Mascot' character = 'Taobao Mascot'
color = (1, 0.5, 0) color = (1, 0.5, 0)
highlight = (1, 1, 1) highlight = (1, 1, 1)
class BBot(BrawlerBot): class BBot(BrawlerBot):
character = 'B-9000' character = 'B-9000'
color = (0.5, 0.5, 0.5) color = (0.5, 0.5, 0.5)
highlight = (1, 0, 0) highlight = (1, 0, 0)
class AgentBot(BrawlerBot): class AgentBot(BrawlerBot):
character = 'Agent Johnson' character = 'Agent Johnson'
color = (0.3, 0.3, 0.33) color = (0.3, 0.3, 0.33)
highlight = (1, 0.5, 0.3) highlight = (1, 0.5, 0.3)
class GrumbledorfBot(BrawlerBot): class GrumbledorfBot(BrawlerBot):
character = 'Grumbledorf' character = 'Grumbledorf'
color = (0.2, 0.4, 1.0) color = (0.2, 0.4, 1.0)
highlight = (0.06, 0.15, 0.4) highlight = (0.06, 0.15, 0.4)
class PixelBot(BrawlerBot): class PixelBot(BrawlerBot):
character = 'Pixel' character = 'Pixel'
color = (0, 1, 0.7) color = (0, 1, 0.7)
highlight = (0.65, 0.35, 0.75) highlight = (0.65, 0.35, 0.75)
class BunnyBot(BrawlerBot): class BunnyBot(BrawlerBot):
character = 'Easter Bunny' character = 'Easter Bunny'
color = (1, 1, 1) color = (1, 1, 1)
highlight = (1, 0.5, 0.5) highlight = (1, 0.5, 0.5)
class Player(bs.Player['Team']): class Player(bs.Player['Team']):
"""Our player type for this game.""" """Our player type for this game."""