import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Audino", }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 531, ], hp: 80, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Relaxed Roll", }, effect: { en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card