21 lines
689 B
Go
21 lines
689 B
Go
package spells
|
|
|
|
import "gitea.maximumdirect.net/eric/notarius/internal/modules/dnd/shared"
|
|
|
|
type extractionResponse struct {
|
|
SpellCasts []spellCastResponse `json:"spell_casts"`
|
|
}
|
|
|
|
type spellCastResponse struct {
|
|
Caster string `json:"caster"`
|
|
Spell string `json:"spell"`
|
|
Effect string `json:"effect"`
|
|
NarrativeDescription string `json:"narrative_description"`
|
|
SourceRefs []spellSourceRefResponse `json:"source_refs"`
|
|
}
|
|
|
|
type spellSourceRefResponse struct {
|
|
StartUnitID shared.UnitRef `json:"start_unit_id"`
|
|
EndUnitID shared.UnitRef `json:"end_unit_id"`
|
|
}
|