import { Card } from '../../../interfaces' import Set from '../Evolving Skies' const card: Card = { set: Set, variants: { normal: true, reverse: true, holo: false, firstEdition: false }, name: { en: "Roggenrola", fr: "Nodulithe", es: "Roggenrola", it: "Roggenrola", pt: "Roggenrola", de: "Kiesling" }, rarity: "Common", category: "Pokemon", hp: 70, types: ["Fighting"], stage: "Basic", illustrator: "Tomokazu Komiya", attacks: [{ name: { en: "Mud-Slap", fr: "Coud'Boue", es: "Bofetón Lodo", it: "Fangosberla", pt: "Mud-Slap", de: "Lehmschelle" }, damage: 10, cost: ["Fighting"] }, { name: { en: "Rolling Tackle", fr: "Roulé-Boulé", es: "Placaje Giro", it: "Rollazione", pt: "Rolling Tackle", de: "Rolltackle" }, damage: 20, cost: ["Fighting", "Colorless"] }], weaknesses: [{ type: "Grass", value: "×2" }], retreat: 3, description: { en: "When it detects a noise, it starts to move. The energy core inside it makes this Pokémon slightly warm to the touch." }, dexId: [524], regulationMark: "E" } export default card