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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp2/7/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Mysterious Treasures", code: "dp2" } } export default card