import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Skarmory", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 227, ], hp: 60, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Claw", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, }, { cost: [ "Metal", "Colorless", "Colorless", ], name: { en: "Steel Wing", }, effect: { en: "Flip a coin. If heads, all damage done by attacks to Skarmory during your opponent's next turn is reduced by 20 (after applying Weakness and Resistance).", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card