1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 20:09:55 +00:00
2025-05-04 00:37:30 +02:00

70 lines
971 B
TypeScript
Raw Permalink 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 '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [507],
set: Set,
name: {
en: "Herdier",
fr: "Ponchien",
es: "Herdier",
it: "Herdier",
pt: "Herdier",
de: "Terribark"
},
illustrator: "Midori Harada",
rarity: "None",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
evolveFrom: {
en: "Lillipup",
fr: "Ponchiot",
es: "Lillipup",
it: "Lillipup",
pt: "Lillipup",
de: "Yorkleff"
},
stage: "Stage1",
attacks: [{
cost: [
"Colorless",
"Colorless"
],
name: {
en: "Collect"
},
effect: {
en: "Draw 3 cards."
}
}, {
cost: [
"Colorless",
"Colorless",
"Colorless"
],
name: {
en: "Bite"
},
damage: 50
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
description: {
en: "It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon."
},
retreat: 1,
}
export default card