1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 10:49:55 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

93 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Hypno",
fr: "Hypnomade",
de: "Hypno"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
97,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Drowzee",
fr: "Soporifik",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Sleep Pendulum",
fr: "Pendulo dodo",
de: "Schlafpendel"
},
effect: {
en: "Once during your turn (before your attack), you may flip a coin. If heads, the Defending Pokémon is now Asleep. This power cant be used if Hypno is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si cest face, le Pokémon Défenseur est maintenant Endormi. Ce pouvoir ne peut pas être utilisé si Hypnomade est affecté par un État spécial.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du eine Münze werfen. Bei \"Kopf\" schläft das Verteidigende Pokémon jetzt. Diese Poké-Power kann nicht benutzt werden, wenn Hypno von einem Speziellen Zustand betroffen ist."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Psychic Shot",
fr: "Attaque Psy",
de: "Psychogeschoss"
},
effect: {
en: "Does 10 damage to 1 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à lun des Pokémon du Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)",
de: "Dieser Angriff fügt 1 Pokémon auf der Bank deines Gegners 10 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
description: {
en: "Always holding a pendulum that it swings at a steady rhythm, it causes drowsiness in anyone nearby."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card