import { Card } from '../../../interfaces' import Set from '../Celestial Storm' const card: Card = { name: { en: "Oricorio", fr: "Plumeline", }, illustrator: "Naoyo Kimura", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 741, ], hp: 90, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Captivating Salsa", fr: "Salsa Envoûtante", }, effect: { en: "Switch 1 of your opponent's Benched Pokémon with their Active Pokémon. The new Active Pokémon is now Burned and Confused.", fr: "Échangez l’un des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Le nouveau Pokémon Actif est maintenant Brûlé et Confus.", }, }, { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Heat Blast", fr: "Explosion de Chaleur", }, damage: 70, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card