mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-02 12:19:53 +00:00
24 lines
458 B
TypeScript
24 lines
458 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Rotom Bike",
|
||
fr: "Moticyclette"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "Draw cards until you have 6 cards in your hand. Your turn ends.",
|
||
fr: "Piochez des cartes jusqu’à en avoir 6 en main. Votre tour se termine."
|
||
},
|
||
|
||
trainerType: "Item"
|
||
}
|
||
|
||
export default card
|