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