mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
39 lines
910 B
TypeScript
39 lines
910 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Shauna",
|
|
fr: "Sannah",
|
|
es: "Xana",
|
|
it: "Shana",
|
|
pt: "Shauna",
|
|
de: "Sannah"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
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",
|
|
illustrator: "Yuu Nishida",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |