import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Lt. Surge's Raticate", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 20, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Rattata", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Super Fang", }, effect: { en: "Does damage to the Defending Pokémon equal to half the Defending Pokémon's remaining HP (rounded up to the nearest 10).", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card