mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 13:01:57 +00:00
57 lines
853 B
TypeScript
57 lines
853 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../White Flare"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pignite",
|
|
fr: "Grotichon",
|
|
de: "Ferkokel",
|
|
it: "Pignite",
|
|
pt: "Pignite",
|
|
es: "Pignite",
|
|
'es-mx': "Pignite"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Fire"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fire"],
|
|
|
|
name: {
|
|
en: "Combustion",
|
|
fr: "Fournaise",
|
|
de: "Glühen",
|
|
it: "Fuoco Continuo",
|
|
pt: "Combustão",
|
|
es: "Combustión",
|
|
'es-mx': "Combustión"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Fire", "Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "Heat Crash",
|
|
fr: "Tacle Feu",
|
|
de: "Brandstempel",
|
|
it: "Marchiafuoco",
|
|
pt: "Choque de Calor",
|
|
es: "Golpe Calor",
|
|
'es-mx': "Golpe de Calor"
|
|
},
|
|
|
|
damage: 80
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |