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: "xy12-70", localId: 70, // Card informations name: { en: "Chansey", fr: "Leveinard", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 113, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy12/70/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/70/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/70/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/70/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Scrunch", fr: "Compresse", }, text: { en: "Flip a coin. If heads, prevent all damage done to this Pokémon by attacks during your opponent's next turn.", fr: "Lancez une pièce. Si c'est face, évitez tous les dégâts infligés à ce Pokémon par des attaques pendant le prochain tour de votre adversaire.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double-Edge", fr: "Damoclès", }, text: { en: "This Pokémon does 80 damage to itself.", fr: "Ce Pokémon s’inflige 80 dégâts.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 3, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Evolutions", code: "xy12" } } export default card