import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Larvitar" }, illustrator: "Naoyo Kimura", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Fighting"], description: { en: "Born deep underground, this Pokémon\nbecomes a pupa after eating enough\ndirt to make a mountain." }, stage: "Basic", attacks: [{ name: { en: "Tackle" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 1 } export default card