mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-13 20:36:15 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Meddling Memo",
|
|
fr: "Note d'Ingérence",
|
|
es: "Nota de Intromisión",
|
|
it: "Nota di Intromissione",
|
|
pt: "Memorando Intrometido",
|
|
de: "Einmischende Notiz"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Your opponent counts the cards in their hand, shuffles those cards, and puts them on the bottom of their deck. If they do, they draw that many cards.",
|
|
fr: "Votre adversaire compte les cartes dans sa main, les mélange, puis les place en dessous de son deck. Dans ce cas, il pioche ce même nombre de cartes.",
|
|
es: "Tu rival cuenta las cartas de su mano, baraja esas cartas y las pone en la parte inferior de su baraja. Si lo hace, tu rival roba esa misma cantidad de cartas.",
|
|
it: "Il tuo avversario conta le carte che ha in mano, rimischia quelle carte e le mette in fondo al suo mazzo. Se lo fa, il tuo avversario pesca lo stesso numero di carte.",
|
|
pt: "Seu oponente conta as cartas na mão dele, embaralha aquelas cartas e as coloca como as cartas de baixo do baralho dele. Se ele fizer isto, ele comprará aquele mesmo número de cartas.",
|
|
de: "Dein Gegner zählt die Karten auf seiner Hand, mischt jene Karten und legt sie unter sein Deck. Wenn er das macht, zieht er genauso viele Karten."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|