UNPKG

mh3-data

Version:

Monster Hunter Tri data for monsters, quests, and weapons

7 lines (6 loc) 355 B
import { WeaponClass } from '../enum'; import type { Weapon } from '../types'; export type HammerAttack = 'Unsheathe Attack' | 'Side Swing' | 'Triple Pound' | 'Short Charge' | 'Uppercut' | 'Superpound' | 'Spin Attack' | 'Spin Release' | 'Spin Golfswing' | 'Spin Finisher'; export interface Hammer extends Weapon { readonly type: WeaponClass.HAMMER; }