mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00

Co-authored-by: Aaron Wagener <mmmcheese158@gmail.com> Co-authored-by: Joe Prochaska <prochaska.joseph@gmail.com>
20 lines
259 B
Python
20 lines
259 B
Python
from . import KH2TestBase
|
|
|
|
|
|
class TestEasy(KH2TestBase):
|
|
options = {
|
|
"FightLogic": 0
|
|
}
|
|
|
|
|
|
class TestNormal(KH2TestBase):
|
|
options = {
|
|
"FightLogic": 1
|
|
}
|
|
|
|
|
|
class TestHard(KH2TestBase):
|
|
options = {
|
|
"FightLogic": 2
|
|
}
|