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

42 lines
1.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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Devolution Spray Z",
fr: "Spray Dés-Évoluant Z",
es: "Chorro de Devolución Z",
it: "Getto di Involuzione Z",
pt: "Spray de Involução Z",
de: "Rückentwicklungsspray Z"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Faites dés-évoluer lun de vos Pokémon évolués en mélangeant le nombre voulu de cartes Évolution placées dessus avec votre deck. (Ce Pokémon ne peut pas évoluer pendant ce tour.)",
en: "Devolve 1 of your evolved Pokémon by shuffling any number of Evolution cards on it into your deck. (That Pokémon cant evolve this turn.)",
es: "Involuciona a 1 de tus Pokémon evolucionados poniendo cualquier cantidad de cartas de Evolución que tenga sobre él en tu baraja y barajando todas las cartas. (Ese Pokémon no puede evolucionar en este turno).",
it: "Annulla levoluzione di uno dei tuoi Pokémon evoluti rimischiandone un numero qualsiasi di carte Evoluzione nel tuo mazzo. Quel Pokémon non può evolversi in questo turno.",
pt: "Reverta a evolução de 1 dos seus Pokémon evoluídos embaralhando qualquer número de cartas de Evolução sobre ele no seu baralho (aquele Pokémon não pode evoluir durante esta vez de jogar).",
de: "Rückentwickle 1 deiner entwickelten Pokémon, indem du beliebig viele auf ihm liegende Entwicklungskarten in dein Deck mischt. (Jenes Pokémon kann sich während dieses Zuges nicht entwickeln.)"
},
trainerType: "Item",
}
export default card