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/138.ts
Normal file
57
data/Scarlet & Violet/White Flare/138.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../White Flare"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Scraggy",
|
||||
fr: "Baggiguane",
|
||||
de: "Zurrokex",
|
||||
it: "Scraggy",
|
||||
pt: "Scraggy",
|
||||
es: "Scraggy",
|
||||
'es-mx': "Scraggy"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
fr: "Coup d'Boule",
|
||||
de: "Kopfnuss",
|
||||
it: "Bottintesta",
|
||||
pt: "Cabeçada",
|
||||
es: "Golpe Cabeza",
|
||||
'es-mx': "Golpe Cabeza"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Darkness", "Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Invade",
|
||||
fr: "Envahissement",
|
||||
de: "Einmarschieren",
|
||||
it: "Scorreria",
|
||||
pt: "Invadir",
|
||||
es: "Invadir",
|
||||
'es-mx': "Invadir"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user