import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Tauros", }, illustrator: "Hajime Kusajima", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 128, ], hp: 70, types: [ "Colorless", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Crush Chance", }, effect: { en: "Once during your turn, when you put Tauros from your hand onto your Bench, you may discard a Stadium card in play.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Call for Family", }, effect: { en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Horn Attack", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card