1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

64 lines
789 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Doduo",
fr: "Doduo",
de: "Dodu"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
84,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier",
de: "Bodycheck"
},
effect: {
en: "Doduo does 10 damage to itself.",
fr: "Doduo s'inflige 10 dégâts.",
de: "Dodu fügt sich selbst 10 Schadenspunkte zu."
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card