mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
73 lines
1.3 KiB
TypeScript
73 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Herdier",
|
||
fr: "Ponchien",
|
||
es: "Herdier",
|
||
it: "Herdier",
|
||
pt: "Herdier",
|
||
de: "Terribark"
|
||
},
|
||
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Colorless"],
|
||
stage: "Stage1",
|
||
illustrator: "kirisAki",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Tackle",
|
||
fr: "Charge",
|
||
es: "Placaje",
|
||
it: "Azione",
|
||
pt: "Tackle",
|
||
de: "Tackle"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Take Down",
|
||
fr: "Bélier",
|
||
es: "Derribo",
|
||
it: "Riduttore",
|
||
pt: "Take Down",
|
||
de: "Bodycheck"
|
||
},
|
||
|
||
effect: {
|
||
en: "This Pokémon also does 20 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige aussi 20 dégâts.",
|
||
es: "Este Pokémon también se hace 20 puntos de daño a sí mismo.",
|
||
it: "Questo Pokémon infligge anche 20 danni a se stesso.",
|
||
pt: "This Pokémon also does 20 damage to itself.",
|
||
de: "Dieses Pokémon fügt auch sich selbst 20 Schadenspunkte zu."
|
||
},
|
||
|
||
damage: 80,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card |