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
840 B
TypeScript
57 lines
840 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cubone",
|
|
fr: "Osselait",
|
|
es: "Cubone",
|
|
de: "Tragosso",
|
|
it: "Cubone",
|
|
pt: "Cubone",
|
|
'es-mx': "Cubone"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Stampede",
|
|
fr: "Ruée",
|
|
es: "Estampida",
|
|
de: "Zertrampeln",
|
|
it: "Fuggi Fuggi",
|
|
pt: "Estouro",
|
|
'es-mx': "Estampida"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
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: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |