Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
Florian Bouillon 2021-01-31 13:46:57 +01:00
parent d965aabad7
commit b7d8fac835
Signed by: Florian Bouillon
GPG Key ID: 50BD648F12C86AB6

View File

@ -25,7 +25,7 @@ export interface CardSingle {
low: string low: string
high?: string high?: string
} }
tags: Array<TagSimple> tags?: Array<TagSimple>
illustrator?: IllustratorSimple illustrator?: IllustratorSimple
rarity: RaritySimple rarity: RaritySimple
category: CategorySimple category: CategorySimple
@ -89,7 +89,7 @@ type Card = {
evolveFrom?: LangList<string> evolveFrom?: LangList<string>
evolveTo?: Array<LangList<string>> evolveTo?: Array<LangList<string>>
tags: Array<Tag> // made after tags?: Array<Tag> // made after
illustrator?: string illustrator?: string
abilities?: Array<Ability> abilities?: Array<Ability>