import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Registeel", fr: "Registeel" }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 379, ], hp: 80, types: [ "Metal", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Clear Body", fr: "Corps sain" }, effect: { en: "Registeel can't be affected by any Special Conditions.", fr: "Registeel ne peut pas être affecté par des États Spéciaux." }, }, ], attacks: [ { cost: [ "Metal", "Metal", "Colorless", ], name: { en: "Hyper Beam", fr: "Ultralaser" }, effect: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur." }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card