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: "bw6-81", localId: 81, // Card informations name: { en: "Registeel-EX", fr: "Registeel-EX", }, hp: 180, type: [ Type.METAL, ], dexId: 379, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/81/low", fr: "https://assets.tcgdex.net/fr/bw/bw6/81/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/81/high", fr: "https://assets.tcgdex.net/fr/bw/bw6/81/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Eske Yoshinob", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Triple Laser", fr: "Triple Laser", }, text: { en: "This attack does 30 damage to 3 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 30 dégâts à 3 des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, },{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Protect Charge", fr: "Recharge Protectrice", }, text: { en: "During your opponent's next turn, any damage done to this Pokémon by attacks is reduced by 20 (after applying Weakness and Resistance).", fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés à ce Pokémon par des attaques sont réduits de 20 (après application de la Faiblesse et de la Résistance).", }, damage: 80 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card