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: "xy5-118", localId: 118, // Card informations name: { en: "Bibarel", fr: "Castorno", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 400, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy5/118/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/118/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/118/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/118/high.png", }, }, evolveFrom: { en: "Bidoof", fr: "Keunotor", }, tags: [ Tag.STAGE1, ], illustrator: { id: 95, name: "kirisAki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Yawn", fr: "Bâillement", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Continuous Headbutt", fr: "Coup d'Boule Sans Fin", }, text: { en: "Flip a coin until you get tails. This attack does 80 damage times the number of heads.", fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 80 dégâts multipliés par le nombre de côtés face.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card