import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Rattata", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 19, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", }, effect: { en: "Draw a card.", }, }, { cost: [ "Colorless", ], name: { en: "Scratch", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card