mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
24 lines
607 B
TypeScript
24 lines
607 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Nugget",
|
||
fr: "Pépite"
|
||
},
|
||
|
||
illustrator: "sadaji",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "You can play this card only if you drew it from your deck at the beginning of your turn, before you put it into your hand. \n\nDraw 3 cards.",
|
||
fr: "Vous ne pouvez jouer cette carte que si vous l’avez piochée dans votre deck au début de votre tour, et avant de l’ajouter à votre main. \n\nPiochez 3 cartes."
|
||
},
|
||
|
||
trainerType: "Item"
|
||
}
|
||
|
||
export default card
|