import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Unfezant", }, illustrator: "Naoyo Kimura", rarity: "Rare", category: "Pokemon", set: Set, evolveFrom: { en: "Tranquill", }, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Daunt", }, effect: { en: "During your opponent’s next turn, the Defending Pokémon’s attacks do 50 less damage (before applying Weakness and Resistance).", }, damage: 50, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Air Slash", }, effect: { en: "Discard an Energy from this Pokémon.", }, damage: 150, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, } export default card