mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-03 00:49: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:
57
data/Scarlet & Violet/Journey Together/130.ts
Normal file
57
data/Scarlet & Violet/Journey Together/130.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Drampa",
|
||||
fr: "Draïeul",
|
||||
es: "Drampa",
|
||||
de: "Sen-Long",
|
||||
it: "Drampa",
|
||||
pt: "Drampa",
|
||||
'es-mx': "Drampa"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
de: "Ramme",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
'es-mx': "Colisión"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Dragon Claw",
|
||||
fr: "Draco-Griffe",
|
||||
es: "Garra Dragón",
|
||||
de: "Drachenklaue",
|
||||
it: "Dragartigli",
|
||||
pt: "Garra de Dragão",
|
||||
'es-mx': "Garra Dragón"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user