1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

93 lines
2.8 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Hypno",
fr: "Hypnomade",
es: "Hypno",
it: "Hypno",
pt: "Hypno",
de: "Hypno"
},
illustrator: "sui",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
97,
],
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Drowzee",
fr: "Soporifik",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Hypnotic Pendulum",
fr: "Pendule Hypnotique",
es: "Péndulo Hipnótico",
it: "Pendolo Ipnotico",
pt: "Pêndulo Hipnótico",
de: "Hypnotisches Pendel"
},
effect: {
en: "When your opponents Active Pokémon is Knocked Out, flip a coin. If heads, choose which of your opponents Benched Pokémon becomes their new Active Pokémon.",
fr: "Lorsque le Pokémon Actif de votre adversaire est mis K.O., lancez une pièce. Si cest face, choisissez le Pokémon de Banc de votre adversaire qui deviendra son nouveau Pokémon Actif.",
es: "Cuando el Pokémon Activo de tu rival quede Fuera de Combate, lanza 1 moneda. Si sale cara, elige cuál de los Pokémon en Banca de tu rival pasa a ser su nuevo Pokémon Activo.",
it: "Quando il Pokémon attivo del tuo avversario viene messo KO, lancia una moneta. Se esce testa, scegli quale dei Pokémon in panchina del tuo avversario far diventare il suo nuovo Pokémon attivo.",
pt: "Quando o Pokémon Ativo do seu oponente for Nocauteado, jogue 1 moeda. Se sair cara, escolha qual dos Pokémon no Banco do seu oponente se tornará o novo Pokémon Ativo dele(a).",
de: "Wenn das Aktive Pokémon deines Gegners kampfunfähig wird, wirf 1 Münze. Wähle bei Kopf, welches der Pokémon auf der Bank deines Gegners sein neues Aktives Pokémon wird."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Stir the Brain",
fr: "Remue-Méninges",
es: "Mareo Cerebral",
it: "Strizzacervelli",
pt: "Bagunça Cerebral",
de: "Gedankenreiz"
},
effect: {
en: "This attack does 10 more damage for each card in your opponents hand.",
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque carte dans la main de votre adversaire.",
es: "Este ataque hace 10 puntos de daño más por cada carta en la mano de tu rival.",
it: "Questo attacco infligge 10 danni in più per ogni carta nella mano del tuo avversario.",
pt: "Este ataque causa 10 pontos de dano a mais para cada carta na mão do seu oponente.",
de: "Diese Attacke fügt 10 Schadenspunkte mehr mal der Anzahl der Karten auf der Hand deines Gegners zu."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card