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
692 B
TypeScript
43 lines
692 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Volcarona",
|
|
fr: "Pyrax",
|
|
es: "Volcarona",
|
|
de: "Ramoth",
|
|
it: "Volcarona",
|
|
pt: "Volcarona",
|
|
'es-mx': "Volcarona"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Fire"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "Smoldering Scales",
|
|
fr: "Écailles Ardentes",
|
|
es: "Escamas Ardientes",
|
|
de: "Glühender Flügelstaub",
|
|
it: "Scaglie Ardenti",
|
|
pt: "Escamas Escaldantes",
|
|
'es-mx': "Escamas Ardientes"
|
|
},
|
|
|
|
damage: 80
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |