1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 14:59: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: "Nymble",
fr: "Lilliterelle",
es: "Nymble",
de: "Micrick",
it: "Nymble",
pt: "Nymble",
'es-mx': "Nymble"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Rear Kick",
fr: "Ruade",
es: "Patada Trasera",
de: "Rückwärtskick",
it: "Retrocalcio",
pt: "Chute Traseiro",
'es-mx': "Patada Trasera"
},
damage: 20
}],
retreat: 1,
regulationMark: "H"
}
export default card