mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 20:49:54 +00:00
52 lines
766 B
TypeScript
52 lines
766 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Shuppet",
|
|
fr: "Polichombr",
|
|
es: "Shuppet",
|
|
de: "Shuppet",
|
|
it: "Shuppet",
|
|
pt: "Shuppet",
|
|
'es-mx': "Shuppet"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic"],
|
|
|
|
name: {
|
|
en: "Spooky Shot",
|
|
fr: "Tir Effrayant",
|
|
es: "Disparo Embrujado",
|
|
de: "Spukschuss",
|
|
it: "Colpomistero",
|
|
pt: "Tiro Assustador",
|
|
'es-mx': "Disparo Espeluznante"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "I",
|
|
|
|
variants: {
|
|
"firstEdition": false,
|
|
"holo": false,
|
|
"normal": true
|
|
"reverse": true,
|
|
"wPromo": false,
|
|
}
|
|
}
|
|
|
|
export default card
|