import { Card } from '../../../interfaces' import Set from '../Undaunted' const card: Card = { name: { en: "Rattata", fr: "Rattata", }, illustrator: "Sachiko Adachi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 19, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Gnaw", fr: "Ronge", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card