1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-12 00:41:58 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/177.ts
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

32 lines
928 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Katy",
fr: "Éra",
es: "Araceli",
it: "Aceria",
pt: "Catarina",
de: "Ronah"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Shuffle your hand into your deck. Then, draw 8 cards. Your turn ends.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 8 cartes. Votre tour se termine.",
es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 8 cartas. Tu turno termina.",
it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca otto carte. Il tuo turno finisce.",
pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 8 cartas. O seu turno acaba.",
de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 8 Karten. Dein Zug endet."
},
trainerType: "Supporter",
regulationMark: "G"
}
export default card