mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
95 lines
2.6 KiB
TypeScript
95 lines
2.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Sylveon VMAX",
|
||
fr: "Nymphali VMAX",
|
||
es: "Sylveon VMAX",
|
||
it: "Sylveon VMAX",
|
||
pt: "Sylveon VMAX",
|
||
de: "Feelinara VMAX"
|
||
},
|
||
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 310,
|
||
types: ["Psychic"],
|
||
illustrator: "Ryota Murayama",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Precious Touch",
|
||
fr: "Touche Précieuse",
|
||
es: "Toque Precioso",
|
||
it: "Tocco Prezioso",
|
||
pt: "Precious Touch",
|
||
de: "Edle Berührung"
|
||
},
|
||
|
||
effect: {
|
||
en: "Attach an Energy card from your hand to 1 of your Benched Pokémon. If you do, heal 120 damage from that Pokémon.",
|
||
fr: "Attachez une carte Énergie de votre main à l'un de vos Pokémon de Banc. Dans ce cas, soignez 120 dégâts de ce Pokémon-là.",
|
||
es: "Une 1 carta de Energía de tu mano a 1 de tus Pokémon en Banca. Si lo haces, cura 120 puntos de daño a ese Pokémon.",
|
||
it: "Assegna a uno dei tuoi Pokémon in panchina una carta Energia dalla tua mano. Se lo fai, cura quel Pokémon da 120 danni.",
|
||
pt: "Attach an Energy card from your hand to 1 of your Benched Pokémon. If you do, heal 120 damage from that Pokémon.",
|
||
de: "Lege 1 Energiekarte aus deiner Hand an 1 Pokémon auf deiner Bank an. Wenn du das machst, heile 120 Schadenspunkte bei jenem Pokémon."
|
||
},
|
||
|
||
cost: ["Psychic"]
|
||
}, {
|
||
name: {
|
||
en: "Max Harmony",
|
||
fr: "Harmoniomax",
|
||
es: "Maxiarmonía",
|
||
it: "Dynarmonia",
|
||
pt: "Max Harmony",
|
||
de: "Dyna-Harmonie"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack does 30 more damage for each different type of Pokémon on your Bench.",
|
||
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque type différent de Pokémon sur votre Banc.",
|
||
es: "Este ataque hace 30 puntos de daño más por cada tipo de Pokémon diferente en tu Banca.",
|
||
it: "Questo attacco infligge 30 danni in più per ogni Pokémon di tipo diverso nella tua panchina.",
|
||
pt: "This attack does 30 more damage for each different type of Pokémon on your Bench.",
|
||
de: "Diese Attacke fügt für jeden verschiedenen Pokémon-Typ auf deiner Bank 30 Schadenspunkte mehr zu."
|
||
},
|
||
|
||
damage: "70+",
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
stage: "VMAX",
|
||
|
||
evolveFrom: {
|
||
en: "Sylveon V",
|
||
fr: "Nymphali-V",
|
||
es: "Sylveon V",
|
||
it: "Sylveon-V",
|
||
pt: "Sylveon V",
|
||
de: "Feelinara-V"
|
||
},
|
||
|
||
dexId: [700],
|
||
regulationMark: "E",
|
||
|
||
}
|
||
|
||
export default card
|