import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Trapinch", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 328, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Sand Pit", }, effect: { en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Irongrip", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card