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: "xyp-XY187", localId: "XY187", // Card informations name: { en: "Celebi", }, hp: 70, type: [ Type.GRASS, ], dexId: 251, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY187/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY187/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Time Call", }, text: { en: "Flip a coin. If heads, search your deck for a card that evolves from 1 of your Pokémon and put it onto that Pokémon. (This counts as evolving that Pokémon.) Shuffle your deck afterward.", }, },{ cost: [ Type.GRASS ], name: { en: "Leech Seed", }, text: { en: "Heal 10 damage from this Pokémon.", }, damage: 10 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card