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/068.ts
Normal file
57
data/Scarlet & Violet/White Flare/068.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../White Flare"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Ferroseed",
|
||||
fr: "Grindur",
|
||||
de: "Kastadur",
|
||||
it: "Ferroseed",
|
||||
pt: "Ferroseed",
|
||||
es: "Ferroseed",
|
||||
'es-mx': "Ferroseed"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
en: "Zzzt",
|
||||
fr: "Bzzz",
|
||||
de: "Piiieks",
|
||||
it: "Bzzz",
|
||||
pt: "Bzzz",
|
||||
es: "Bzzz",
|
||||
'es-mx': "Bzzz"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Metal", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Metal Claw",
|
||||
fr: "Griffe Acier",
|
||||
de: "Metallklaue",
|
||||
it: "Ferrartigli",
|
||||
pt: "Garra de Metal",
|
||||
es: "Garra Metal",
|
||||
'es-mx': "Garra de Metal"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user