mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
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
|
||
|
}
|