import { Card } from '../../../interfaces' import Set from '../Undaunted' const card: Card = { name: { en: "Rattata", fr: "Rattata", de: "Rattfratz" }, 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", de: "Nagen" }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, description: { en: "Living wherever there is food available, it ceaselessly scavenges for edibles the entire day." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card