1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

42 lines
1.4 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 '../Evolutions'
const card: Card = {
name: {
en: "Maintenance",
fr: "Entretien",
es: "Mantenimiento",
it: "Manutenzione",
pt: "Manutenção",
de: "Wartung"
},
illustrator: "Keiji Kinebuchi",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Mélangez 2 cartes de votre main avec votre deck. (Si vous ne pouvez pas mélanger 2 cartes avec votre deck, vous ne pouvez pas jouer cette carte.) Ensuite, piochez une carte.",
en: "Shuffle 2 cards from your hand into your deck. (If you cant shuffle 2 cards into your deck, you cant play this card.) Then, draw a card.",
es: "Pon 2 cartas de tu mano en tu baraja y barájalas todas. (Si no puedes poner 2 cartas, no puedes jugar esta carta). Después, roba 1 carta.",
it: "Rimischia due carte dalla tua mano nel tuo mazzo (se non puoi rimischiare due carte nel tuo mazzo, non potrai giocare questa carta). Poi, pesca una carta.",
pt: "Embaralhe 2 cards da sua mão em seu baralho. (Se você não puder embaralhar 2 cards em seu baralho, não poderá jogar esse card.) Em seguida, compre um card.",
de: "Mische 2 Karten von deiner Hand in dein Deck. (Wenn du keine 2 Karten in dein Deck mischen kannst, kannst du diese Karte nicht spielen.) Ziehe anschließend 1 Karte."
},
trainerType: "Item",
}
export default card