mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-15 01:41:59 +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/061.ts
Normal file
57
data/Scarlet & Violet/Journey Together/061.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Beldum",
|
||||
fr: "Terhal",
|
||||
es: "Beldum",
|
||||
de: "Tanhel",
|
||||
it: "Beldum",
|
||||
pt: "Beldum",
|
||||
'es-mx': "Beldum"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Spinning Attack",
|
||||
fr: "Attaque Tournante",
|
||||
es: "Ataque Giratorio",
|
||||
de: "Rundumangriff",
|
||||
it: "Attacco Rotante",
|
||||
pt: "Ataque Giratório",
|
||||
'es-mx': "Ataque Giratorio"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Beam",
|
||||
fr: "Rayon",
|
||||
es: "Transmisión",
|
||||
de: "Strahl",
|
||||
it: "Raggio",
|
||||
pt: "Feixe",
|
||||
'es-mx': "Rayo"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user