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:
57
data/Scarlet & Violet/Journey Together/045.ts
Normal file
57
data/Scarlet & Violet/Journey Together/045.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Alolan Graveler",
|
||||
fr: "Gravalanch d'Alola",
|
||||
es: "Graveler de Alola",
|
||||
de: "Alola-Georok",
|
||||
it: "Graveler di Alola",
|
||||
pt: "Graveler de Alola",
|
||||
'es-mx': "Graveler de Alola"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rolling Tackle",
|
||||
fr: "Roulé-Boulé",
|
||||
es: "Placaje Giro",
|
||||
de: "Rolltackle",
|
||||
it: "Rollazione",
|
||||
pt: "Golpe de Colisão Rolante",
|
||||
'es-mx': "Tacleada Rodante"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Electric Punch",
|
||||
fr: "Poing Électrique",
|
||||
es: "Puño Eléctrico",
|
||||
de: "Elektroschlag",
|
||||
it: "Pugno Elettrico",
|
||||
pt: "Murro Elétrico",
|
||||
'es-mx': "Puño Eléctrico"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user