import { Card } from '../../../interfaces' import Set from '../Team Rocket Returns' const card: Card = { name: { en: "Dark Marowak", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 105, ], hp: 70, types: [ "Fighting", "Darkness", ], evolveFrom: { en: "Cubone", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Brick Smash", }, effect: { en: "This attack's damage isn't affected by Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.", }, damage: 30, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Hard Bone", }, effect: { en: "Discard a Basic Pokémon or Evolution card from your hand or this attack does nothing.", }, damage: 70, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card