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: "bw7-110", localId: 110, // Card informations name: { en: "Togepi", fr: "Togepi", }, hp: 40, type: [ Type.COLORLESS, ], dexId: 175, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/110/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/110/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/110/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/110/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Attract Smack", fr: "Poutou Grisant", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card