import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Registeel ex", }, illustrator: "Hikaru Koike", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 379, ], hp: 90, types: [ "Metal", ], suffix: "EX", attacks: [ { cost: [ "Colorless", ], name: { en: "Block Signal", }, effect: { en: "If Regice ex is in play, flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10, }, { cost: [ "Metal", "Metal", "Colorless", ], name: { en: "Wide Laser", }, effect: { en: "Does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card