import { Card } from '../../../interfaces' import Set from '../Boundaries Crossed' const card: Card = { name: { en: "Unfezant", fr: "Déflaisan", es: "Unfezant", it: "Unfezant", pt: "Unfezant", de: "Fasasnob" }, illustrator: "Hajime Kusajima", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 521, ], hp: 130, types: [ "Colorless", ], evolveFrom: { en: "Tranquill", fr: "Colombeau", }, stage: "Stage2", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Wing Flick", fr: "Battement d'Aile", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.", }, damage: 40, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Air Slash", fr: "Lame d'Air", }, effect: { en: "Flip a coin. If tails, discard an Energy attached to this Pokémon.", fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie attachée à ce Pokémon.", }, damage: 80, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card