mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 15:19:55 +00:00
33 lines
429 B
TypeScript
33 lines
429 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Celestial Storm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Bill's Maintenance",
|
||
fr: "Entretien de Léo",
|
||
},
|
||
illustrator: "Sanosuke Sakuma",
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Mélangez une carte de votre main avec votre deck. Dans ce cas, piochez 3 cartes.",
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|