import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Larvitar", }, illustrator: "Nakaoka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 246, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Dig Under", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. This attack's damage isn't affected by Weakness or Resistance.", }, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card