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: "dp7-54", localId: 54, // Card informations name: { en: "Bidoof", fr: "Bidoof", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 399, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp7/54/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp7/54/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp7/54/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp7/54/high.png", }, }, evolveFrom: { fr: "Keunotor", }, tags: [ Tag.BASIC, ], illustrator: { id: 45, name: "Yuka Morii" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Yawn", fr: "Baillement", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, },{ cost: [ Type.COLORLESS ], name: { en: "Self-abandonment", fr: "S'abandonner", }, text: { en: "Flip a coin. If heads, this attack does 30 damage to the Defending Pokémon. If tails, Bidoof does 10 damage to itself.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts au Pokémon Défenseur. Si c'est pile, Keunotor s'inflige 10 dégâts.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Stormfront", code: "dp7" } } export default card