import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Litleo", fr: "Hélionceau", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 667, ], hp: 60, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Roar", fr: "Hurlement", }, effect: { en: "Your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange son Pokémon Actif avec l'un de ses Pokémon de Banc.", }, }, { cost: [ "Fire", "Colorless", ], name: { en: "Live Coal", fr: "Charbon Mutant", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, } export default card