import { Card } from '../../../interfaces' import Set from '../Steam Siege' const card: Card = { name: { en: "Litleo", fr: "Hélionceau", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 667, ], hp: 60, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Lunge", fr: "Coup Rapide", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, } export default card