mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
24 lines
573 B
TypeScript
24 lines
573 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Dan",
|
||
fr: "Guido"
|
||
},
|
||
|
||
illustrator: "Hitoshi Ariga",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "Draw 2 cards. You and your opponent play Rock-Paper-Scissors until someone wins. If you win, draw 2 more cards.",
|
||
fr: "Piochez 2 cartes. Jouez à pierre-ciseaux-feuille avec votre adversaire jusqu’à avoir un gagnant. Si vous gagnez, piochez 2 cartes supplémentaires."
|
||
},
|
||
|
||
trainerType: "Supporter"
|
||
}
|
||
|
||
export default card
|