mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 13:59:18 +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/132.ts
Normal file
53
data/Scarlet & Violet/Journey Together/132.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Greedent",
|
||||
fr: "Rongrigou",
|
||||
es: "Greedent",
|
||||
de: "Schlaraffel",
|
||||
it: "Greedent",
|
||||
pt: "Greedent",
|
||||
'es-mx': "Greedent"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Colorless"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Gluttonous Tail",
|
||||
fr: "Queue Gourmande",
|
||||
es: "Cola Codiciosa",
|
||||
de: "Gefräßiger Schweif",
|
||||
it: "Coda Vorace",
|
||||
pt: "Cauda Gulosa",
|
||||
'es-mx': "Cola Glotona"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw 2 cards.",
|
||||
fr: "Piochez 2 cartes.",
|
||||
es: "Roba 2 cartas.",
|
||||
de: "Ziehe 2 Karten.",
|
||||
it: "Pesca due carte.",
|
||||
pt: "Compre 2 cartas.",
|
||||
'es-mx': "Roba 2 cartas."
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user