mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 04:49:19 +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:
67
data/Scarlet & Violet/Journey Together/030.ts
Normal file
67
data/Scarlet & Violet/Journey Together/030.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Reshiram ex",
|
||||
fr: "Reshiram-ex",
|
||||
es: "Reshiram ex",
|
||||
de: "Reshiram-ex",
|
||||
it: "Reshiram-ex",
|
||||
pt: "Reshiram ex",
|
||||
'es-mx': "Reshiram ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Fire Wing",
|
||||
fr: "Aile de Feu",
|
||||
es: "Ala Ígnea",
|
||||
de: "Feuerflügel",
|
||||
it: "Alafiamma",
|
||||
pt: "Asa de Fogo",
|
||||
'es-mx': "Ala Ígnea"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Scorching Fire",
|
||||
fr: "Feu Infernal",
|
||||
es: "Fuego Abrasador",
|
||||
de: "Versengendes Feuer",
|
||||
it: "Fuoco Ustionante",
|
||||
pt: "Fogo Ardente",
|
||||
'es-mx': "Fuego Ardiente"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
es: "Descarta 1 Energía de este Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel.",
|
||||
it: "Scarta un'Energia da questo Pokémon.",
|
||||
pt: "Descarte uma Energia deste Pokémon.",
|
||||
'es-mx': "Descarta 1 Energía de este Pokémon."
|
||||
},
|
||||
|
||||
damage: 200
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user