import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Tauros", }, illustrator: "Anesaki Dynamic", rarity: "Common", category: "Pokemon", set: Set, hp: 110, types: [ "Colorless", ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Horn Attack", }, damage: 60, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], retreat: 2, } export default card