import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Regirock", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 377, ], hp: 80, types: [ "Fighting", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Clear Body", }, effect: { en: "Regirock can't be affected by any Special Conditions.", }, }, ], attacks: [ { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Rock Slide", }, effect: { en: "Does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 40, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card