1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

114 lines
2.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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",
es: "Gothita",
it: "Gothita",
pt: "Gothita",
de: "Mollimorba"
},
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 opponent's 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
},
stage: "Stage1",
description: {
en: "It's said that when stars shine in the night sky, this Pokémon will spirit away sleeping children. Some call it the Witch of Punishment."
}
}
export default card