import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Rattata", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 19, ], hp: 30, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Lunge", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], } export default card