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: "ex10-109", localId: 109, // Card informations name: { en: "Steelix ex", }, hp: 150, type: [ Type.METAL, ], dexId: 208, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/109/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/109/high", }, }, evolveFrom: { en: "Onix", }, tags: [ Tag.EX, ], illustrator: "Ryo Ueda", abilities: [{ id: 282, type: AbilityType.POKEBODY, name: { en: "Poison Resistance", }, text: { en: "Steelix ex can't be Poisoned.", } }], attacks: [{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Metal Charge", }, text: { en: "Put 1 damage counter on Steelix ex.", }, damage: 70 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mudslide", }, text: { en: "Discard 2 Fighting Energy attached to Steelix ex and choose 1 of your opponent's Pokémon. This attack does 100 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" },{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" },{ type: Type.LIGHTNING, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card