1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 21:09:54 +00:00
TCGdex [Bot] 0475848425
editor: fix Scarlet & Violet variants (#508)
Co-authored-by: Avior <git@avior.me>
2024-07-03 15:53:00 +02:00

36 lines
854 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Youngster",
fr: "Gamin",
es: "Joven",
it: "Marmocchio",
pt: "Jovem",
de: "Knirps"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Shuffle your hand into your deck. Then, draw 5 cards.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 5 cartes.",
es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 5 cartas.",
it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca cinque carte.",
pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 5 cartas.",
de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 5 Karten."
},
trainerType: "Supporter",
regulationMark: "G",
variants: {
holo: false
}
}
export default card