-
Notifications
You must be signed in to change notification settings - Fork 1
/
__init__.py
43 lines (41 loc) · 1.33 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 2023 Nobleo Technology B.V.
#
# SPDX-License-Identifier: Apache-2.0
from .example.bot import ExampleBot
from .random import Random
from .hein.bot import ApologeticApophis
from .felipe.bot import TemplateSnake
from .mahmoud.bot import SneakyBot
from .jeroen.bot import ExampleBot as JeroenBot
from .jonothan.bot import bender
from .lewie.bot import LewieBot
from .bram.bot import Slytherin
from .daniel.bot import Explorer
from .rokusottervanger.bot import OtterByte
from .mukunda.bot import Snakunamatata
from .ferry.bot import FurryMuncher
from .mhoogesteger.bot import CherriesAreForLosers
from .mhoogesteger.bot_pathfinding_wip import ThereIsNoCandy
# from .brammmieee.bot import RLQuaza
from .rayman.bot import Slifer
from .niekdt.bot import Snek
bots = (
Random,
# ExampleBot, # Disabled: Template
ApologeticApophis,
# TemplateSnake, # Disabled: Template not modified
# SneakyBot, # Disabled: Template not modified
JeroenBot,
bender,
LewieBot,
# Slytherin, # Disabled: Template not modified
Explorer,
# OtterByte, # Disabled: Template not modified
Snakunamatata,
FurryMuncher,
CherriesAreForLosers,
# ThereIsNoCandy, # Disabled: rng manipulation
# RLQuaza, # Disabled: makes tournament.py freeze
Slifer,
Snek, # Disabled: memory increases with each game played
)