1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-01 00:09: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,43 @@
import { Card } from "../../../interfaces"
import Set from "../Journey Together"
const card: Card = {
set: Set,
name: {
en: "Milcery",
fr: "Crèmy",
es: "Milcery",
de: "Hokumil",
it: "Milcery",
pt: "Milcery",
'es-mx': "Milcery"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
de: "Tackle",
it: "Azione",
pt: "Investida",
'es-mx': "Tacleada"
},
damage: 20
}],
retreat: 1,
regulationMark: "H"
}
export default card