17 lines
420 B
Go
17 lines
420 B
Go
package spells
|
|
|
|
type extractionResponse struct {
|
|
SpellCasts []spellCastResponse `json:"spell_casts"`
|
|
}
|
|
|
|
type spellCastResponse struct {
|
|
Caster string `json:"caster"`
|
|
Spell string `json:"spell"`
|
|
SourceRefs []spellSourceRefResponse `json:"source_refs"`
|
|
}
|
|
|
|
type spellSourceRefResponse struct {
|
|
StartUnitID int `json:"start_unit_id"`
|
|
EndUnitID int `json:"end_unit_id"`
|
|
}
|