mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
80 lines
1.1 KiB
TypeScript
80 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Expedition Base Set'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Tauros",
|
||
fr: "Tauros",
|
||
de: "Tauros"
|
||
},
|
||
illustrator: "Yuichi Sawayama",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
128,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
|
||
name: {
|
||
en: "Horn Hazard",
|
||
fr: "Chanc'korne",
|
||
de: "Gefährliches Horn"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip a coin. If tails, this attack does nothing.",
|
||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||
de: "Wirf eine Münze. Bei 'Zahl' hat dieser Angriff keine Auswirkungen."
|
||
},
|
||
|
||
damage: 30
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Take Down",
|
||
fr: "Bélier",
|
||
de: "Bodycheck"
|
||
},
|
||
effect: {
|
||
en: "Tauros does 20 Damage to itself.",
|
||
fr: "Tauros s'inflige 20 dégâts.",
|
||
de: "Tauros fügt sich selber 20 Schadenspunkte zu."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|