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>
43 lines
626 B
TypeScript
43 lines
626 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Combusken",
|
|
fr: "Galifeu",
|
|
es: "Combusken",
|
|
de: "Jungglut",
|
|
it: "Combusken",
|
|
pt: "Combusken",
|
|
'es-mx': "Combusken"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Fire"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "Slash",
|
|
fr: "Tranche",
|
|
es: "Cuchillada",
|
|
de: "Schlitzer",
|
|
it: "Lacerazione",
|
|
pt: "Talho",
|
|
'es-mx': "Cuchillada"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |