mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 13:01:57 +00:00
43 lines
645 B
TypeScript
43 lines
645 B
TypeScript
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: "Common",
|
|
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 |