mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-08-04 12:56:12 -07:00
Co-authored-by: Aaron Wagener <[email protected]> Co-authored-by: Joe Prochaska <[email protected]>
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
|
|
}
|