mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 10:59:54 +00:00
73 lines
1.3 KiB
TypeScript
73 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Platinum'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Tauros",
|
|
fr: "Tauros",
|
|
de: "Tauros"
|
|
},
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
128,
|
|
],
|
|
hp: 70,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Show Off",
|
|
fr: "Crâneur",
|
|
de: "Show Off"
|
|
},
|
|
effect: {
|
|
en: "Search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
|
fr: "Choisissez dans votre deck une carte Énergie de base. Montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.",
|
|
de: "Search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Take Down",
|
|
fr: "Bélier",
|
|
de: "Take Down"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If tails, Tauros does 10 damage to itself.",
|
|
fr: "Lancez une pièce. Si c'est pile, Tauros s'inflige 10 dégâts.",
|
|
de: "Flip a coin. If tails, Tauros does 10 damage to itself."
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|