import { Card } from "../../../interfaces" import Set from "../Eevee Grove" const card: Card = { set: Set, name: { en: "Applin" }, illustrator: "Kagemaru Himeno", rarity: "One Diamond", category: "Pokemon", hp: 40, types: ["Grass"], description: { en: "It grows by eating the flesh of an apple.\nApplin uses its own body fluid to strengthen\nthe apple's skin and prevent it from rotting." }, stage: "Basic", attacks: [{ name: { en: "Ram" }, damage: 20, cost: ["Grass"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card