1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00
Florian Bouillon a550cf079c
feat: Add Journey Together (#701)
* feat: Add static data for Journey Together

Signed-off-by: Avior <git@avior.me>

* feat: finish naming

Signed-off-by: Avior <git@avior.me>

* should be done

Signed-off-by: Avior <git@avior.me>

* Update index.ts

---------

Signed-off-by: Avior <git@avior.me>
2025-03-29 12:44:17 +01:00

43 lines
649 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"
}
export default card