mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
69 lines
946 B
TypeScript
69 lines
946 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Tauros",
|
||
fr: "Tauros",
|
||
es: "Tauros",
|
||
it: "Tauros",
|
||
pt: "Tauros",
|
||
de: "Tauros"
|
||
},
|
||
|
||
illustrator: "Anesaki Dynamic",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 110,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Horn Attack",
|
||
fr: "Koud'Korne",
|
||
es: "Cornada",
|
||
it: "Incornata",
|
||
pt: "Ataque de Chifre",
|
||
de: "Hornattacke"
|
||
},
|
||
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "They live in groups. The one with the longest, thickest, and most-scarred horns is the boss of the herd."
|
||
}
|
||
}
|
||
|
||
export default card
|