20 lines
353 B
TypeScript
20 lines
353 B
TypeScript
import type { InputAction } from '../../../input'
|
|
|
|
export const IWT2_ABILITY_ACTIONS: InputAction[] = [
|
|
'ability1',
|
|
'ability2',
|
|
'ability3',
|
|
'ability4',
|
|
'ability5',
|
|
'ability6',
|
|
]
|
|
|
|
export const IWT2_TARGET_ACTIONS: InputAction[] = [
|
|
'targetParty1',
|
|
'targetParty2',
|
|
'targetParty3',
|
|
'targetParty4',
|
|
'targetParty5',
|
|
'targetParty6',
|
|
]
|