mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
59 lines
843 B
TypeScript
59 lines
843 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Larvesta",
|
|
fr: "Pyronille",
|
|
es: "Larvesta",
|
|
it: "Larvesta",
|
|
pt: "Larvesta",
|
|
de: "Ignivor"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Ram",
|
|
fr: "Collision",
|
|
es: "Apisonar",
|
|
it: "Carica",
|
|
pt: "Aríete",
|
|
de: "Ramme"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "Steady Firebreathing",
|
|
fr: "Crachage de Feu Régulier",
|
|
es: "Lanzallamas Continuo",
|
|
it: "Soffiofuoco Mirato",
|
|
pt: "Hálito de Fogo Constante",
|
|
de: "Stetiger Feuerhauch"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|