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: "bw6-107", localId: 107, // Card informations name: { en: "Bibarel", fr: "Castorno", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 400, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/107/low", fr: "https://assets.tcgdex.net/fr/bw/bw6/107/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/107/high", fr: "https://assets.tcgdex.net/fr/bw/bw6/107/high", }, }, evolveFrom: { en: "Bidoof", fr: "Keunotor", }, tags: [ Tag.STAGE1, ], illustrator: "kawayoo", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Amnesia", fr: "Amnésie", }, text: { en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", fr: "Choisissez 1 des attaques du Pokémon Défenseur. Le Pokémon ciblé ne peut pas utiliser l'attaque choisie pendant le prochain tour de votre adversaire.", }, damage: 40 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Tumbling Tackle", fr: "Tacle Titubant", }, text: { en: "Both this Pokémon and the Defending Pokémon are now Asleep.", fr: "Ce Pokémon et le Pokémon Défenseur sont maintenant Endormis.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card