import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Dodrio", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 85, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Doduo", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Fury Attack", }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Triple Pick", }, effect: { en: "Choose 3 of your opponent's Evolved Pokémon. This attack does 30 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Lightning", value: "+20" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], } export default card