import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Rattata", }, illustrator: "Masako Yamashita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 19, ], hp: 30, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Call for Friends", }, effect: { en: "Search your deck for a Baby Pokémon or Basic Pokémon and put it onto your bench. Shuffle your deck afterward. (You can't use this attack it your bench is full.)", }, }, { cost: [ "Colorless", ], name: { en: "Body Slam", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card