import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Staravia", }, illustrator: "chibi", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Starly", }, attacks: [ { cost: [ "Colorless", ], name: { en: "Ambush", }, effect: { en: "Flip a coin. If heads, this attack does 20 more damage.", }, damage: "20+", }, { cost: [ "Colorless", "Colorless", ], name: { en: "Wing Attack", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, } export default card