import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Crustle", }, illustrator: "Naoki Saito", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 558, ], hp: 100, types: [ "Grass", ], evolveFrom: { en: "Dwebble", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Hard Press", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 30, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Hammer In", }, damage: 70, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2 } export default card