import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Larvitar δ", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 246, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Paralyzing Gaze", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Horn Attack", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card