1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 12:19:53 +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
838 B
TypeScript

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