1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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.4 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Team Up'
const card: Card = {
name: {
en: "Erikas Hospitality",
fr: "Hospitalité dErika",
es: "Hospitalidad de Erika",
it: "Ospitalità di Erika",
pt: "Hospitalidade da Érica",
de: "Erikas Gastfreundschaft"
},
illustrator: "Sanosuke Sakuma",
rarity: "Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Vous ne pouvez jouer cette carte que si vous avez 4 autres cartes ou moins dans votre main.\n\nPiochez une carte pour chacun des Pokémon en jeu de votre adversaire.",
en: "You can play this card only if you have 4 or fewer other cards in your hand.\n\nDraw a card for each of your opponents Pokémon in play.",
es: "Puedes jugar esta carta solo si tienes otras 4 cartas o menos en tu mano.\n\nRoba 1 carta por cada uno de los Pokémon en juego de tu rival.",
it: "Puoi giocare questa carta solo se hai quattro o meno altre carte in mano.\n\nPesca una carta per ogni Pokémon del tuo avversario in gioco.",
pt: "Você só pode jogar esta carta se tiver 4 ou menos outras cartas na sua mão.\n\nCompre 1 carta para cada um dos Pokémon do seu oponente em jogo.",
de: "Du kannst diese Karte nur spielen, wenn du 4 oder weniger andere Karten auf deiner Hand hast.\n\n\nZiehe 1 Karte für jedes Pokémon deines Gegners im Spiel."
},
trainerType: "Supporter",
}
export default card