mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
66 lines
810 B
TypeScript
66 lines
810 B
TypeScript
import Card from '../../../interfaces/Card'
|
|
import Type from '../../../interfaces/Type'
|
|
import Tag from '../../../interfaces/Tag'
|
|
import Rarity from '../../../interfaces/Rarity'
|
|
import AbilityType from '../../../interfaces/AbilityType'
|
|
import Category from '../../../interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "sm10-231",
|
|
localId: 231,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Fire Crystal",
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/sm/sm10/231/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/sm/sm10/231/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.ITEM,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 71,
|
|
name: "Yoshinobu Saito"
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.TRAINER,
|
|
|
|
set: {
|
|
name: "Unbroken Bonds",
|
|
code: "sm10"
|
|
}
|
|
}
|
|
|
|
export default card
|