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:
53
data/Scarlet & Violet/Journey Together/169.ts
Normal file
53
data/Scarlet & Violet/Journey Together/169.ts
Normal file
@ -0,0 +1,53 @@
|
||||
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: "Illustration rare",
|
||||
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
|
Reference in New Issue
Block a user