1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 12:09: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

53 lines
837 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Journey Together"
const card: Card = {
set: Set,
name: {
en: "Noibat",
fr: "Sonistrelle",
es: "Noibat",
de: "eF-eM",
it: "Noibat",
pt: "Noibat",
'es-mx': "Noibat"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Rapid Draw",
fr: "Pioche Rapide",
es: "Robo Rápido",
de: "Schnellzieher",
it: "Pescalesto",
pt: "Retirada Rápida",
'es-mx': "Robo Rápido"
},
effect: {
en: "Draw a card.",
fr: "Piochez une carte.",
es: "Roba 1 carta.",
de: "Ziehe 1 Karte.",
it: "Pesca una carta.",
pt: "Compre uma carta.",
'es-mx': "Roba 1 carta."
},
damage: 10
}],
retreat: 1,
regulationMark: "I"
}
export default card