mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 13:21:58 +00:00
feat: add database update (#825)
This commit is contained in:
57
data/Scarlet & Violet/White Flare/012.ts
Normal file
57
data/Scarlet & Violet/White Flare/012.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
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
|
Reference in New Issue
Block a user