import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Doduo" }, illustrator: "Yuya Oka", category: "Pokemon", hp: 60, types: ["Colorless"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Peck" }, damage: "20" }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "A two-headed Pokémon that was discovered as a sudden mutation. It runs at a pace of over 60 miles per hour.", } } export default card