import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Solrock" }, illustrator: "Kyoko Umemoto", rarity: "One Diamond", category: "Pokemon", hp: 90, types: ["Fighting"], description: { en: "When it rotates itself, it gives off light similar to the sun, thus blinding its foes." }, stage: "Basic", attacks: [{ name: { en: "Solar Beam" }, damage: 60, cost: ["Fighting", "Fighting"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 2 } export default card