1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/200.ts
2025-02-19 21:52:42 +01:00

44 lines
620 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Dodrio"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
stage: "Stage1",
evolveFrom: {
en: "Doduo"
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Drill Peck"
},
damage: "40"
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 0,
rarity: "Two Diamond",
description: {
en: "An enemy that takes its eyes off any of the three heads—even for a second—will get pecked severely.",
}
}
export default card