1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* 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
2021-10-26 10:40:03 +02:00

90 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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