mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
61
data/Scarlet & Violet/Surging Sparks/084.ts
Normal file
61
data/Scarlet & Violet/Surging Sparks/084.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Espurr",
|
||||
fr: "Psystigri",
|
||||
es: "Espurr",
|
||||
it: "Espurr",
|
||||
pt: "Espurr",
|
||||
de: "Psiau"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "See Through",
|
||||
fr: "Main Transparente",
|
||||
es: "Transparencia",
|
||||
it: "Sbirciatina",
|
||||
pt: "Transparência",
|
||||
de: "Durchblick"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent reveals their hand.",
|
||||
fr: "Votre adversaire montre sa main.",
|
||||
es: "Tu rival enseña las cartas de su mano.",
|
||||
it: "Il tuo avversario mostra le carte che ha in mano.",
|
||||
pt: "Seu oponente revela a mão dele.",
|
||||
de: "Dein Gegner zeigt dir seine Handkarten."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Psyshot",
|
||||
fr: "Piqûre Psy",
|
||||
es: "Disparo Psi",
|
||||
it: "Psicosparo",
|
||||
pt: "Tiro Psíquico",
|
||||
de: "Psychoschuss"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user