1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-03 00: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:
2025-03-29 12:44:17 +01:00
committed by GitHub
parent 78366685f8
commit a550cf079c
199 changed files with 11305 additions and 2 deletions

View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../Journey Together"
const card: Card = {
set: Set,
name: {
en: "Drampa",
fr: "Draïeul",
es: "Drampa",
de: "Sen-Long",
it: "Drampa",
pt: "Drampa",
'es-mx': "Drampa"
},
rarity: "Common",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
de: "Ramme",
it: "Carica",
pt: "Aríete",
'es-mx': "Colisión"
},
damage: 30
}, {
cost: ["Colorless", "Colorless"],
name: {
en: "Dragon Claw",
fr: "Draco-Griffe",
es: "Garra Dragón",
de: "Drachenklaue",
it: "Dragartigli",
pt: "Garra de Dragão",
'es-mx': "Garra Dragón"
},
damage: 50
}],
retreat: 2,
regulationMark: "H"
}
export default card