mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 13:21:58 +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:
43
data/Scarlet & Violet/Journey Together/029.ts
Normal file
43
data/Scarlet & Violet/Journey Together/029.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
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
|
Reference in New Issue
Block a user