mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59: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/015.ts
Normal file
67
data/Scarlet & Violet/Journey Together/015.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Virizion",
|
||||
fr: "Viridium",
|
||||
es: "Virizion",
|
||||
de: "Viridium",
|
||||
it: "Virizion",
|
||||
pt: "Virizion",
|
||||
'es-mx': "Virizion"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Leaf Drain",
|
||||
fr: "Feuille Sangsue",
|
||||
es: "Hoja Drenante",
|
||||
de: "Blattsauger",
|
||||
it: "Assorbifoglia",
|
||||
pt: "Dreno Folha",
|
||||
'es-mx': "Hojadrenado"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts de ce Pokémon.",
|
||||
es: "Cura 30 puntos de daño a este Pokémon.",
|
||||
de: "Heile 30 Schadenspunkte bei diesem Pokémon.",
|
||||
it: "Cura questo Pokémon da 30 danni.",
|
||||
pt: "Cure 30 pontos de dano deste Pokémon.",
|
||||
'es-mx': "Cura 30 puntos de daño a este Pokémon."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Grass", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Slicing Blade",
|
||||
fr: "Lame Tranchante",
|
||||
es: "Cuchilla Cortante",
|
||||
de: "Schwertschneide",
|
||||
it: "Affettalama",
|
||||
pt: "Lâmina Fatiante",
|
||||
'es-mx': "Cuchilla Cortante"
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user