import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ecard2-H12", localId: "H12", // Card informations name: { en: "Hypno", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 97, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard2/H12/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard2/H12/high.png", }, }, evolveFrom: { en: "Drowzee", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, abilities: [{ id: 194, type: AbilityType.POKEPOWER, name: { en: "Sleep Pendulum", }, text: { en: "Once during your turn (before your attack), if Hypno is your Active Pokémon, you may make the Defending Pokémon Asleep. This power can't be used if Hypno is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Spiral Aura", }, text: { en: "If the Defending Pokémon isn't Knocked Out by the damage from this attack, you may choose 1 of your opponent's Benched Pokémon and switch the Defending Pokémon with it.", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Aquapolis", code: "ecard2" } } export default card