import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "dp2-7", localId: 7, // Card informations name: { en: "Celebi", }, hp: 60, type: [ Type.GRASS, ], dexId: 251, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp2/7/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp2/7/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kagemaru Himeno", attacks: [{ name: { en: "Sprouting", }, text: { en: "Search your deck for a Grass Energy card and attach it to Celebi. Shuffle your deck afterward.", }, },{ cost: [ Type.GRASS, Type.GRASS ], name: { en: "Leaf Tornado", }, text: { en: "You may move any number of basic Grass Energy cards attached to your Pokémon to your other Pokémon in any way you like.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Mysterious Treasures", code: "dp2" } } export default card