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

57 lines
967 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Journey Together"
const card: Card = {
set: Set,
name: {
en: "Alolan Geodude",
fr: "Racaillou d'Alola",
es: "Geodude de Alola",
de: "Alola-Kleinstein",
it: "Geodude di Alola",
pt: "Geodude de Alola",
'es-mx': "Geodude de Alola"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Knuckle Punch",
fr: "Coud'Phalange",
es: "Puño con Nudillos",
de: "Knöchelhieb",
it: "Noccapugno",
pt: "Soco com Punho",
'es-mx': "Puño con Nudillos"
},
damage: 10
}, {
cost: ["Lightning", "Colorless"],
name: {
en: "Tiny Charge",
fr: "Décharge Mineure",
es: "Carga Diminuta",
de: "Mini-Stromstoß",
it: "Sottocarica Minuscola",
pt: "Carga Pequenina",
'es-mx': "Minicarga"
},
damage: 30
}],
retreat: 2,
regulationMark: "H"
}
export default card