import { Card } from '../../../interfaces' import Set from '../Supreme Victors' const card: Card = { name: { en: "Staravia", fr: "Etourvol", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 397, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Starly", fr: "Etourmi", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Double Peck", fr: "Double picpic", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Air Crash", fr: "Crash aérien", }, effect: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "+20" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card