import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Dodrio", }, illustrator: "Yukiko Baba", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 85, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Doduo", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Tri Attack", }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Peck Attack", }, effect: { en: "Flip 2 coins. If 1 of them is heads, this attack does 20 damage. If both are heads, this attack does 50 damage. If both are tails, the Defending Pokémon is now Confused.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card