initial commit

This commit is contained in:
2024-02-25 12:22:24 +01:00
commit 4e60216b8e
10 changed files with 3360 additions and 0 deletions

19
gql/GetSpell.graphql Normal file
View File

@@ -0,0 +1,19 @@
query GetSpell($index: String!){
spell(index: $index){
name,
level,
school {
name
}
desc,
components,
duration,
ritual,
range,
casting_time,
area_of_effect {
size
type
}
}
}