mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
42 lines
978 B
TypeScript
42 lines
978 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Celestial Storm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Bill’s Maintenance",
|
||
fr: "Entretien de Léo",
|
||
es: "Mantenimiento de Bill",
|
||
it: "Sostegno di Bill",
|
||
pt: "Manutenção do Bill",
|
||
de: "Bills Wartung"
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Mélangez une carte de votre main avec votre deck. Dans ce cas, piochez 3 cartes.",
|
||
en: "Shuffle a card from your hand into your deck. If you do, draw 3 cards.",
|
||
es: "Pon 1 carta de tu mano en tu baraja y barájalas todas. Si lo haces, roba 3 cartas.",
|
||
it: "Rimischia una delle carte che hai in mano nel tuo mazzo. Se lo fai, pesca tre carte.",
|
||
pt: "Embaralhe 1 carta da sua mão no seu baralho. Se fizer isto, compre 3 cartas.",
|
||
de: "Mische 1 Karte aus deiner Hand in dein Deck. Wenn du das machst, ziehe 3 Karten."
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|