import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Larvitar", fr: "Embrylex", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 246, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bite", fr: "Morsure", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Knuckle Punch", fr: "Coud’phalange", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 1, description: { en: "It is born deep underground. It can’t emerge until it has entirely consumed the soil around it." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card