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