import { Card } from '../../../interfaces' import Set from '../SWSH Black Star Promos' const card: Card = { set: Set, name: { en: "Noctowl" }, illustrator: "Misa Tsutsui", rarity: "Common", category: "Pokemon", hp: 110, types: ["Colorless"], evolveFrom: { en: "Hoothoot" }, attacks: [{ name: { en: "Wing Attack" }, damage: 40, cost: ["Colorless", "Colorless"] }, { name: { en: "Carry Off" }, effect: { en: "Choose 1 of your opponent’s Benched Pokémon. They shuffle that Pokémon and all attached cards into their deck. Then, shuffle this Pokémon and all attached cards into your deck." }, cost: ["Colorless", "Colorless", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1 } export default card