1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

86 lines
2.5 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Hypno",
fr: "Hypnomade",
es: "Hypno",
it: "Hypno",
pt: "Hypno",
de: "Hypno"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
stage: "Stage1",
illustrator: "Miki Tanaka",
attacks: [{
name: {
en: "Hypnosis",
fr: "Hypnose",
es: "Hipnosis",
it: "Ipnosi",
pt: "Hypnosis",
de: "Hypnose"
},
effect: {
en: "Your opponents Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
pt: "Your opponents Active Pokémon is now Asleep.",
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
},
cost: ["Psychic"]
}, {
name: {
en: "Wake-Up Slap",
fr: "Réveil Forcé",
es: "Espabila",
it: "Svegliopacca",
pt: "Wake-Up Slap",
de: "Weckruf"
},
effect: {
en: "If your opponents Active Pokémon is affected by a Special Condition, this attack does 90 more damage. Then, that Pokémon recovers from all Special Conditions.",
fr: "Si le Pokémon Actif de votre adversaire est affecté par un État Spécial, cette attaque inflige 90 dégâts supplémentaires. Ensuite, ce Pokémon-là guérit de tous les États Spéciaux.",
es: "Si el Pokémon Activo de tu rival se ve afectado por una Condición Especial, este ataque hace 90 puntos de daño más. Después, ese Pokémon se recupera de todas las Condiciones Especiales.",
it: "Se il Pokémon attivo del tuo avversario è influenzato da una condizione speciale, questo attacco infligge 90 danni in più. Poi quel Pokémon guarisce da tutte le condizioni speciali.",
pt: "If your opponents Active Pokémon is affected by a Special Condition, this attack does 90 more damage. Then, that Pokémon recovers from all Special Conditions.",
de: "Wenn das Aktive Pokémon deines Gegners von einem Speziellen Zustand betroffen ist, fügt diese Attacke 90 Schadenspunkte mehr zu. Jenes Pokémon erholt sich anschließend von allen Speziellen Zuständen."
},
damage: "30+",
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2
}
export default card