import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Larvitar", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 246, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Bite", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Mud Slap", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card