1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12: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

import { Card } from '../../../interfaces'
import Set from '../Guardians Rising'
const card: Card = {
name: {
en: "Hala",
fr: "Pectorius",
es: "Kaudan",
it: "Hala",
pt: "Pandam",
de: "Hala"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Mélangez votre main avec votre deck. Si vous avez utilisé votre attaque GX, piochez 7 cartes. Sinon, piochez 4 cartes.",
en: "Shuffle your hand into your deck. If you have used your GX attack, draw 7 cards. If not, draw 4 cards.",
es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Si has usado tu ataque GX, roba 7 cartas. Si no, roba 4 cartas.",
it: "Rimischia le carte che hai in mano nel tuo mazzo. Se hai usato un attacco GX, pesca sette carte. Altrimenti, pesca quattro carte.",
pt: "Embaralhe a sua mão no seu baralho. Se você usou o seu ataque GX, compre 7 cartas. Caso contrário, compre 4 cartas.",
de: "Mische deine Handkarten in dein Deck. Wenn du deine GX-Attacke eingesetzt hast, ziehe 7 Karten. Wenn nicht, ziehe 4 Karten."
},
trainerType: "Supporter",
}
export default card