import { Card } from '../../../interfaces' import Set from '../Pokémon Rumble' const card: Card = { name: { en: "Rattata", }, illustrator: undefined, rarity: "None", category: "Pokemon", set: Set, dexId: [ 19, ], hp: 30, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Bite", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card