import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Larvitar", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 246, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Mountain Bite", }, effect: { en: "You may discard the top card of your deck. If you do, this attack does 10 damage plus 10 more damage and Larvitar is now Asleep.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Hammer In", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "+10" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], } export default card