1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

104 lines
2.4 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Gothorita",
fr: "Mesmérella",
es: "Gothorita",
it: "Gothorita",
pt: "Gothorita",
de: "Hypnomorba"
},
illustrator: "sowsow",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Gothita",
fr: "Scrutella"
},
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Whiny Voice",
fr: "Voix Suppliante",
es: "Voz Quejica",
it: "Moine",
pt: "Voz Chorosa",
de: "Jammerstimme"
},
effect: {
en: "Choose a random card from your opponents hand. Your opponent reveals that card and shuffles it into their deck.",
fr: "Choisissez une carte au hasard dans la main de votre adversaire. Votre adversaire montre cette carte, puis la mélange avec son deck.",
es: "Elige 1 carta aleatoria de la mano de tu rival. Tu rival enseña esa carta, la pone en su baraja y las baraja todas.",
it: "Scegli una carta a caso dalla mano del tuo avversario. Il tuo avversario mostra quella carta e la rimischia nel suo mazzo.",
pt: "Escolha 1 carta aleatória da mão do seu oponente. Seu oponente revela aquela carta e a embaralha no próprio baralho.",
de: "Wähle 1 zufällige Karte aus der Hand deines Gegners. Dein Gegner zeigt dir jene Karte und mischt sie in sein Deck."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Double Spin",
fr: "Double Tour",
es: "Doble Giro",
it: "Doppioturbo",
pt: "Giro Duplo",
de: "Doppeldreher"
},
effect: {
en: "Flip 2 coins. This attack does 30 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 30 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 30 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 30 pontos de dano para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 30 Schadenspunkte pro Kopf zu."
},
damage: "30×",
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card