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: "bw6-122", localId: 122, // 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/122/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/122/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/122/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/122/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 4, name: "5ban Graphics" }, 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.RareUltra, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card