mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
75 lines
1.6 KiB
TypeScript
75 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Sigilyph",
|
|
fr: "Cryptéro",
|
|
es: "Sigilyph",
|
|
it: "Sigilyph",
|
|
pt: "Sigilyph",
|
|
de: "Symvolara"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Double Draw",
|
|
fr: "Double Pioche",
|
|
es: "Roba Doble",
|
|
it: "Pescata Doppia",
|
|
pt: "Compra Dupla",
|
|
de: "Zweifachzug"
|
|
},
|
|
|
|
effect: {
|
|
en: "Draw 2 cards.",
|
|
fr: "Piochez 2 cartes.",
|
|
es: "Roba 2 cartas.",
|
|
it: "Pesca due carte.",
|
|
pt: "Compre 2 cartas.",
|
|
de: "Ziehe 2 Karten."
|
|
}
|
|
}, {
|
|
cost: ["Psychic", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Psy Bolt",
|
|
fr: "Choc Mental",
|
|
es: "Rayo Psi",
|
|
it: "Psico",
|
|
pt: "Raio Psíquico",
|
|
de: "Mentale Blockade"
|
|
},
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
|
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
|
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
|
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente agora estará Paralisado.",
|
|
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|