mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-19 22:59:55 +00:00
44 lines
620 B
TypeScript
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
|