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: "bw3-64", localId: 64, // Card informations name: { en: "Conkeldurr", fr: "Bétochef", }, hp: 140, type: [ Type.FIGHTING, ], dexId: 534, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw3/64/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/64/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw3/64/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/64/high.png", }, }, evolveFrom: { en: "Gurdurr", fr: "Ouvrifier", }, tags: [ Tag.STAGE2, ], illustrator: { id: 27, name: "kawayoo" }, abilities: [{ id: 798, type: AbilityType.TALENT, name: { en: "Craftsmanship", fr: "Maître d'Œuvre", }, text: { en: "This Pokémon gets +20 HP for each Fighting Energy attached to it.", fr: "Chaque Énergie Fighting attachée à ce Pokémon lui ajoute 20 PV.", } }], attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Top Down", fr: "Écras'Montagne", }, text: { en: "Flip a coin until you get tails. For each heads, discard the top card of your opponent's deck.", fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Pour chaque côté face, défaussez la carte du dessus du deck de votre adversaire.", }, damage: 80 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 4, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Noble Victories", code: "bw3" } } export default card