1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

87 lines
2.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Necrozma V",
fr: "Necrozma V",
es: "Necrozma V",
it: "Necrozma V",
pt: "Necrozma V",
de: "Necrozma V"
},
illustrator: "PLANETA Tsuji",
rarity: "Rare",
category: "Pokemon",
hp: 220,
types: ["Psychic"],
attacks: [{
name: {
en: "Prismatic Ray",
fr: "Rayon Prismatique",
es: "Rayo Prismático",
it: "Raggio Prismatico",
pt: "Raio Prismático",
de: "Prisma-Strahl"
},
effect: {
en: "This attack also does 20 damage to 2 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige aussi 20 dégâts à 2 des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque también hace 20 puntos de daño a 2 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge anche 20 danni a due dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque também causa 20 pontos de dano a 2 dos Pokémon no Banco do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt auch 2 Pokémon auf der Bank deines Gegners 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 20,
cost: ["Psychic"]
}, {
name: {
en: "Special Laser",
fr: "Laser Spécial",
es: "Láser Especial",
it: "Laser Speciale",
pt: "Laser Especial",
de: "Spezial-Laser"
},
effect: {
en: "If this Pokémon has any Special Energy attached, this attack does 120 more damage.",
fr: "Si de lÉnergie spéciale est attachée à ce Pokémon, cette attaque inflige 120 dégâts supplémentaires.",
es: "Si este Pokémon tiene alguna Energía Especial unida a él, este ataque hace 120 puntos de daño más.",
it: "Se questo Pokémon ha delle Energie speciali assegnate, questo attacco infligge 120 danni in più.",
pt: "Se este Pokémon tiver alguma Energia Especial ligada a ele, este ataque causará 120 pontos de dano a mais.",
de: "Wenn an dieses Pokémon mindestens 1 Spezial-Energie angelegt ist, fügt diese Attacke 120 Schadenspunkte mehr zu."
},
damage: "100+",
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card