mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
64 lines
763 B
TypeScript
64 lines
763 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: "ex1-104",
|
|
localId: 104,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Grass Energy",
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex1/104/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex1/104/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.ENERGY,
|
|
|
|
set: {
|
|
name: "Ruby & Sapphire",
|
|
code: "ex1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|