import { Card } from '../../../interfaces' import Set from '../Fossil' const card: Card = { name: { en: "Hypno", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 97, ], hp: 90, types: [ "Psychic", ], evolveFrom: { en: "Drowzee", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Prophecy", }, effect: { en: "Look at up to 3 cards from the top of either player's deck and rearrange them as you like.", }, }, { cost: [ "Psychic", "Psychic", "Psychic", ], name: { en: "Dark Mind", }, effect: { en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card