import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Raticate" }, illustrator: "Kyoko Umemoto", rarity: "One Diamond", category: "Pokemon", hp: 90, types: ["Colorless"], evolveFrom: { en: "Rattata" }, description: { en: "People say that it fled from its enemies by using its small webbed hind feet to swim from island to island in Alola." }, stage: "Stage1", attacks: [{ name: { en: "Tackle" }, damage: 50, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card