mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
* 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>
57 lines
883 B
TypeScript
57 lines
883 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Morgrem",
|
|
fr: "Fourbelin",
|
|
es: "Morgrem",
|
|
de: "Pelzebub",
|
|
it: "Morgrem",
|
|
pt: "Morgrem",
|
|
'es-mx': "Morgrem"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Psychic"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic"],
|
|
|
|
name: {
|
|
en: "Light Punch",
|
|
fr: "Poing Léger",
|
|
es: "Puño Ligero",
|
|
de: "Leichter Hieb",
|
|
it: "Pugnetto",
|
|
pt: "Soco de Luz",
|
|
'es-mx': "Puño Ligero"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
en: "Smash Kick",
|
|
fr: "Coud'Pattes",
|
|
es: "Patada Destrucción",
|
|
de: "Schmetterkick",
|
|
it: "Calcio Esplosivo",
|
|
pt: "Chute Poderoso",
|
|
'es-mx': "Patada Devastadora"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |