import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Larvitar", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 246, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Leer", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn. (Benching or evolving either Pokémon ends this effect.)", }, }, { cost: [ "Fire", "Colorless", ], name: { en: "Rock Throw", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card