import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Noctowl", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 164, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Hoothoot", }, stage: "Stage1", abilities: [ { type: "Poke-POWER", name: { en: "Investigate", }, effect: { en: "Once during your turn (before you attack) you may look at the top 2 cards of any player's deck or at to up 2 of any player's Prizes. Put any cards you looked at back in the same order. This power can't be used if Noctowl is affected by a Special Condition.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Triple Smash", }, effect: { en: "Flip 3 coins. This attack does 10 damage plus 10 more damage for each heads.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card