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: "bw6-108", localId: 108, // Card informations name: { en: "Audino", fr: "Nanméouïe", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 531, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/108/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/108/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/108/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/108/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 18, name: "Tomokazu Komiya" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Wake-up Beam", fr: "Rayon Vivifiant", }, text: { en: "Remove all Special Conditions from the Defending Pokémon.", fr: "Retirez tous les États Spéciaux du Pokémon Défenseur.", }, damage: 40 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Drain Slap", fr: "Baffe Sangsue", }, text: { en: "Heal 30 damage from this Pokémon.", fr: "Soignez 30 dégâts à ce Pokémon.", }, 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