import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Marshtomp", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 259, ], hp: 70, types: [ "Water", ], evolveFrom: { en: "Mudkip", }, stage: "Stage1", attacks: [ { cost: [ "Water", ], name: { en: "Bubble", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Slash", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card