1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12: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

94 lines
2.9 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Gothitelle",
fr: "Sidérella",
es: "Gothitelle",
it: "Gothitelle",
pt: "Gothitelle",
de: "Morbitesse"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
576,
],
hp: 140,
types: [
"Psychic",
],
evolveFrom: {
en: "Gothorita",
fr: "Mesmérella",
},
stage: "Stage2",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Tractorbeam",
fr: "Rayon Inversion",
es: "Rayo Tractor",
it: "Tiraggio",
pt: "Raio Trator",
de: "Traktorstrahl"
},
effect: {
en: "Switch 1 of your opponents Benched Pokémon with their Active Pokémon. This attack does 30 damage to the new Active Pokémon.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Cette attaque inflige 30 dégâts au nouveau Pokémon Actif.",
es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo. Este ataque hace 30 puntos de daño al nuevo Pokémon Activo.",
it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo. Questo attacco infligge 30 danni al nuovo Pokémon attivo.",
pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele(a). Este ataque causa 30 pontos de dano ao novo Pokémon Ativo.",
de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus. Diese Attacke fügt dem neuen Aktiven Pokémon 30 Schadenspunkte zu."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Link Blast",
fr: "Explosion en Série",
es: "Rayo Conector",
it: "Spaccalegame",
pt: "Explosão Conectada",
de: "Vereinigende Explosion"
},
effect: {
en: "If this Pokémon and your opponents Active Pokémon have the same amount of Energy attached to them, this attack does 80 more damage.",
fr: "Si ce Pokémon et le Pokémon Actif de votre adversaire ont le même nombre dÉnergies attachées, cette attaque inflige 80 dégâts supplémentaires.",
es: "Si este Pokémon y el Pokémon Activo de tu rival tienen el mismo número de Energías unidas a ellos, este ataque hace 80 puntos de daño más.",
it: "Se questo Pokémon e il Pokémon attivo del tuo avversario hanno la stessa quantità di Energie assegnate, questo attacco infligge 80 danni in più.",
pt: "Se este Pokémon e o Pokémon Ativo do seu oponente tiverem a mesma quantidade de Energia ligada a eles, este ataque causará 80 pontos de dano a mais.",
de: "Wenn an dieses Pokémon genauso viel Energie angelegt ist wie an das Aktive Pokémon deines Gegners, fügt diese Attacke 80 Schadenspunkte mehr zu."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card