1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32: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.1 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Aether Foundation Employee",
fr: "Employés de la Fondation Æther",
es: "Empleados Fundación Æther",
it: "Dipendente della Fondazione Æther",
pt: "Funcionários da Aether",
de: "Angestellte der Æther Foundation"
},
illustrator: "take",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Ajoutez 3 Pokémon avec « dAlola » dans leur nom, de votre pile de défausse à votre main.",
en: "Put 3 Pokémon that have \"Alolan\" in their names from your discard pile into your hand.",
es: "Pon 3 Pokémon que tengan \"de Alola\" en su nombre de tu pila de descartes en tu mano.",
it: "Prendi tre Pokémon con “di Alola” nel nome dalla tua pila degli scarti e aggiungili alle carte che hai in mano.",
pt: "Coloque 3 Pokémon da sua pilha de descarte na sua mão que tenham “de Alola” no seu nome.",
de: "Nimm 3 Pokémon, bei denen Alola zum Namen gehört, aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Supporter",
}
export default card