mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-16 06:39:50 +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:
65
data/Scarlet & Violet/Journey Together/131.ts
Normal file
65
data/Scarlet & Violet/Journey Together/131.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Skwovet",
|
||||
fr: "Rongourmand",
|
||||
es: "Skwovet",
|
||||
de: "Raffel",
|
||||
it: "Skwovet",
|
||||
pt: "Skwovet",
|
||||
'es-mx': "Skwovet"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Collect",
|
||||
fr: "Collecte",
|
||||
es: "Coleccionar",
|
||||
de: "Sammeln",
|
||||
it: "Tassa",
|
||||
pt: "Coleta",
|
||||
'es-mx': "Recolectar"
|
||||
},
|
||||
|
||||
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."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Gnaw",
|
||||
fr: "Ronge",
|
||||
es: "Roer",
|
||||
de: "Nagen",
|
||||
it: "Rosicchiamento",
|
||||
pt: "Roída",
|
||||
'es-mx': "Mordisquear"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user