1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 14:22:09 +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.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 '../Guardians Rising'
const card: Card = {
name: {
en: "Aqua Patch",
fr: "Fortifiant Aquatique",
es: "Refuerzo Agua",
it: "Distintivo Acqua",
pt: "Fragmento Aquático",
de: "Wasserpflaster"
},
illustrator: "Toyste Beach",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Attachez une carte Énergie Water de votre pile de défausse à lun de vos Pokémon Water de Banc.",
en: "Attach a Water Energy card from your discard pile to 1 of your Benched Water Pokémon.",
es: "Une 1 carta de Energía Water de tu pila de descartes a 1 de tus Pokémon Water en Banca.",
it: "Assegna a uno dei tuoi Pokémon Water in panchina una carta Energia Water dalla tua pila degli scarti.",
pt: "Ligue 1 carta de Energia Water da sua pilha de descarte a 1 dos seus Pokémon Water no Banco.",
de: "Lege 1 Water-Energiekarte aus deinem Ablagestapel an 1 Water-Pokémon auf deiner Bank an."
},
trainerType: "Item",
}
export default card