mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 04:49:19 +00:00
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>
This commit is contained in:
57
data/Scarlet & Violet/Journey Together/044.ts
Normal file
57
data/Scarlet & Violet/Journey Together/044.ts
Normal file
@ -0,0 +1,57 @@
|
||||
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
|
Reference in New Issue
Block a user