mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +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
90 lines
1.6 KiB
TypeScript
90 lines
1.6 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,
|
||
dexId: [507],
|
||
|
||
evolveFrom: {
|
||
en: "Lillipup",
|
||
fr: "Ponchiot",
|
||
es: "Lillipup",
|
||
it: "Lillipup",
|
||
pt: "Lillipup",
|
||
de: "Yorkleff"
|
||
},
|
||
|
||
description: {
|
||
en: "It has been living with people for so long that portrayals of it can be found on the walls of caves from long, long ago."
|
||
},
|
||
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|