1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

92 lines
2.0 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Gallade",
fr: "Gallame",
es: "Gallade",
it: "Gallade",
pt: "Gallade",
de: "Galagladi"
},
illustrator: "Huang Tzu En",
rarity: "Secret Rare",
category: "Pokemon",
set: Set,
dexId: [
475,
],
hp: 160,
types: [
"Psychic",
],
evolveFrom: {
en: "Kirlia",
fr: "Kirlia",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Double Type",
fr: "Type Double",
es: "Doble Tipo",
it: "Doppio Tipo",
pt: "Tipo Duplo",
de: "Doppeltyp"
},
effect: {
en: "As long as this Pokémon is in play, it is Psychic and Fighting type.",
fr: "Tant que ce Pokémon est en jeu, il est de type Psychic et Fighting.",
es: "Mientras este Pokémon esté en juego, es de tipo Psychic y Fighting.",
it: "Fintanto che questo Pokémon è in gioco, è di tipo Psychic e Fighting.",
pt: "Enquanto este Pokémon estiver em jogo, é do tipo Psychic e Fighting.",
de: "Solang dieses Pokémon im Spiel ist, ist es vom Typ Psychic und Fighting."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Power Cyclone",
fr: "Cyclone dÉnergie",
es: "Ciclón Poderoso",
it: "Ciclone Potente",
pt: "Ciclone Poderoso",
de: "Kraftwirbel"
},
effect: {
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
fr: "Déplacez une Énergie de ce Pokémon vers lun de vos Pokémon de Banc.",
es: "Mueve 1 Energía de este Pokémon a 1 de tus Pokémon en Banca.",
it: "Sposta unEnergia da questo Pokémon a uno di quelli nella tua panchina.",
pt: "Mova 1 Energia deste Pokémon para 1 dos seus Pokémon no Banco.",
de: "Verschiebe 1 Energie von diesem Pokémon auf 1 Pokémon auf deiner Bank."
},
damage: 120,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card