mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
37 lines
1.5 KiB
TypeScript
37 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Chill Teaser Toy",
|
|
fr: "Jouet Plumeau",
|
|
es: "Plumero Señuelo",
|
|
it: "Bacchetta Gioco Rilassante",
|
|
pt: "Varinha Relaxante",
|
|
de: "Lockwedel"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "You can use this card only if you go second, and only during your first turn.\n\nPut an Energy attached to 1 of your opponent's Pokémon into their hand.",
|
|
fr: "Vous ne pouvez utiliser cette carte que si vous jouez en second et uniquement pendant votre premier tour.\n\nAjoutez à la main de votre adversaire une Énergie attachée à l'un de ses Pokémon.",
|
|
es: "Puedes usar esta carta solo si sales en segundo lugar, y solo durante tu primer turno.\n\nPon 1 Energía unida a uno de los Pokémon de tu rival en su mano.",
|
|
it: "Puoi usare questa carta solo se inizi per secondo e solo durante il tuo primo turno.\n\nPrendi un'Energia assegnata a uno dei Pokémon del tuo avversario e aggiungila alle carte che ha in mano.",
|
|
pt: "Você só pode usar esta carta se for o segundo a jogar e somente durante o seu primeiro turno.\n\nColoque uma Energia ligada a 1 dos Pokémon do seu oponente na mão dele.",
|
|
de: "Du kannst diese Karte nur einsetzen, wenn du als Zweiter am Zug bist, und nur während deines ersten Zuges.\n\nGib deinem Gegner 1 an eines seiner Pokémon angelegte Energie auf seine Hand."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|