import { Card } from '../../../interfaces' import Set from '../Team Rocket Returns' const card: Card = { name: { en: "Rattata", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 19, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Call for Family", }, effect: { en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.", }, }, { cost: [ "Colorless", ], name: { en: "Snarl", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage to the Defending Pokémon. If tails, the Defending Pokémon is now Paralyzed.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card