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>
67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
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 |