import { Card } from '../../../interfaces' import Set from '../Celestial Storm' const card: Card = { name: { en: "Larvitar", fr: "Embrylex", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 246, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Leer", fr: "Groz’Yeux", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Rock Throw", fr: "Jet-Pierres", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card