hensei-web/types/PartyParams.d.ts
Justin Edmund 7c814610b9 Create PartyTransformer
Transforms data into Party objects and back again.

We also created PartyParams to send data back to the API in a uniform way.

We organized the resulting object more than we have in the past since we can do what we want now.

Lastly, we removed characters, weapons and summons from this object. We will probably make a new Grid object and reference that here instead.
2023-07-06 00:04:52 -07:00

22 lines
477 B
TypeScript

interface PartyParams {
local_id?: string
name?: string
description?: string
raid_id?: string
extra?: boolean
job_id?: string
master_level?: number
ultimate_mastery?: number
accessory_id?: string
full_auto?: boolean
auto_guard?: boolean
auto_summon?: boolean
charge_attack?: boolean
clear_time?: number
button_count?: number
turn_count?: number
chain_count?: number
guidebook1_id?: string
guidebook2_id?: string
guidebook3_id?: string
}