import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Skarmory ex", }, illustrator: "Ryo Ueda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 227, ], hp: 100, types: [ "Metal", ], suffix: "EX", abilities: [ { type: "Poke-BODY", name: { en: "Metal Gravity", }, effect: { en: "If your opponent's Active Pokémon retreats and has 40 or more remaining HP, put 3 damage counters on that Pokémon. You can't use more than 1 Metal Gravity Poké-Body each turn.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Whirlwind", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, damage: 30, }, { cost: [ "Metal", "Metal", "Colorless", ], name: { en: "Razor Wing", }, damage: 60, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card