mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: add database update (#825)
This commit is contained in:
43
data/Scarlet & Violet/White Flare/124.ts
Normal file
43
data/Scarlet & Violet/White Flare/124.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../White Flare"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gothita",
|
||||
fr: "Scrutella",
|
||||
de: "Mollimorba",
|
||||
it: "Gothita",
|
||||
pt: "Gothita",
|
||||
es: "Gothita",
|
||||
'es-mx': "Gothita"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Super Psy Bolt",
|
||||
fr: "Super Psy",
|
||||
de: "Super-Psischlag",
|
||||
it: "Superpsico",
|
||||
pt: "Super-raio Psíquico",
|
||||
es: "Superrayo Psi",
|
||||
'es-mx': "Superpsicotrueno"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user