import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "dp4-53", localId: 53, // Card informations name: { en: "Skarmory", fr: "Airmure", }, hp: 70, type: [ Type.METAL, ], dexId: 227, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp4/53/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp4/53/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp4/53/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp4/53/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.METAL ], name: { en: "Air Crash", fr: "Crash aérien", }, text: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.", }, damage: 20 },{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Steel Wing", fr: "Aile d'acier", }, text: { en: "During your opponent's next turn, any damage done to Skarmory by attacks is reduced by 20 (after applying Weakness and Resistance).", fr: "Lors du prochain tour de votre adversaire, tous dégâts infligés à Airmure par des attaques sont réduits de 20 (après application de la Faiblesse et de la Résistance).", }, damage: 40 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Great Encounters", code: "dp4" } } export default card