import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/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", fr: "https://assets.tcgdex.net/fr/xy/xy5/118/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/118/high", fr: "https://assets.tcgdex.net/fr/xy/xy5/118/high", }, }, evolveFrom: { en: "Bidoof", fr: "Keunotor", }, tags: [ Tag.STAGE1, ], illustrator: "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