import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "hgss2-24", localId: 24, // Card informations name: { en: "Steelix", fr: "Steelix", }, hp: 120, type: [ Type.METAL, ], dexId: 208, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss2/24/low", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/24/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss2/24/high", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/24/high", }, }, evolveFrom: { en: "Onix", fr: "Onix", }, tags: [ Tag.STAGE1, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Guard Press", fr: "Pression de garde", }, text: { en: "During your opponent's next turn, any damage done to Steelix by attacks is reduced by 20 (after applying Weakness and Resistance).", fr: "Tous les dégâts infligés à Steelix par des attaques pendant le prochain tour de votre adversaire sont réduits de 20 (après application de la Faiblesse et de la Résistance).", }, damage: 40 },{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Steel Swing", fr: "Frappe d'acier", }, text: { en: "Flip 2 coins. This attack does 80 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 80 dégâts multipliés par le nombre de côtés face.", }, damage: 80 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "HS—Unleashed", code: "hgss2" } } export default card