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: "pl3-21", localId: 21, // Card informations name: { en: "Chimecho", fr: "Éoko", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 358, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl3/21/low.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/21/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl3/21/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/21/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 22, name: "Yukiko Baba" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Heal Bell", fr: "Glas de soin", }, text: { en: "Remove 3 damage counters from each of your Pokémon.", fr: "Retirez à chacun de vos Pokémon 3 marqueurs de dégât.", }, },{ cost: [ Type.PSYCHIC ], name: { en: "Super Psywave", fr: "Super vague psy", }, text: { en: "Choose 1 of your opponent's Pokémon. Count the amount of Energy attached to that Pokémon. Put that many damage counters on the Pokémon.", fr: "Choisissez 1 des Pokémon de votre adversaire. Comptabilisez le nombre d'Énergies attachées à ce Pokémon. Placez autant de marqueurs de dégât sur ce Pokémon.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "+20" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Supreme Victors", code: "pl3" } } export default card