mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
45 lines
732 B
TypeScript
45 lines
732 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Tauros"
|
|
},
|
|
|
|
illustrator: "Kazumasa Yasukuni",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Colorless"],
|
|
|
|
description: {
|
|
en: "When Tauros begins whipping itself with its tails, it's a warning that the Pokémon is about to charge with astounding speed."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Rising Lunge"
|
|
},
|
|
|
|
damage: "50+",
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 50 more damage."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card
|