mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 20:09:55 +00:00
70 lines
971 B
TypeScript
70 lines
971 B
TypeScript
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
|