import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Corviknight", }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, hp: 160, types: [ "Colorless", ], evolveFrom: { en: "Corvisquire", }, abilities: [ { type: "Ability", name: { en: "Flying Taxi", }, effect: { en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may put 1 of your Pokémon, except any Corviknight, and all attached cards into your hand.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Blasting Wind", }, damage: 120, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fightning", value: "-30" }, ], retreat: 2, } export default card