1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

97 lines
2.8 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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Dusk Mane Necrozma",
fr: "Necrozma Crinière du Couchant",
es: "Necrozma Melena Crepuscular",
it: "Necrozma Criniera del Vespro",
pt: "Necrozma Juba Crepúsculo",
de: "Abendmähne-Necrozma"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
800,
],
hp: 130,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Dusk Shot",
fr: "Tir au Couchant",
es: "Disparo Crepuscular",
it: "Colpo del Vespro",
pt: "Tiro Crepúsculo",
de: "Abendgeschoss"
},
effect: {
en: "This attack does 60 damage to 1 of your opponents Pokémon-GX or Pokémon-EX. This damage isnt affected by Weakness or Resistance.",
fr: "Cette attaque inflige 60 dégâts à lun des Pokémon-GX ou Pokémon-EX de votre adversaire. Ces dégâts ne sont pas affectés par la Faiblesse ou la Résistance.",
es: "Este ataque hace 60 puntos de daño a 1 de los Pokémon-GX o Pokémon-EX de tu rival. Este daño no se ve afectado por Debilidad o Resistencia.",
it: "Questo attacco infligge 60 danni a uno dei Pokémon-GX o Pokémon-EX del tuo avversario. Questi danni non sono influenzati dalla debolezza o dalla resistenza.",
pt: "Este ataque causa 60 pontos de dano a 1 dos Pokémon-GX ou Pokémon-EX do seu oponente. Este dano não é afetado por Fraqueza ou Resistência.",
de: "Diese Attacke fügt 1 Pokémon-GX oder Pokémon-EX deines Gegners 60 Schadenspunkte zu. Der Schaden dieser Attacke wird durch Schwäche und Resistenz nicht verändert."
},
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Rusty Claws",
fr: "Griffes Rouillées",
es: "Garras Herrumbrosas",
it: "Artigli Ferrosi",
pt: "Garras Enferrujadas",
de: "Rostige Krallen"
},
effect: {
en: "If your opponent has exactly 1 Prize card remaining, this attack does 100 more damage.",
fr: "Sil reste exactement 1 carte Récompense à votre adversaire, cette attaque inflige 100 dégâts supplémentaires.",
es: "Si a tu rival le queda exactamente 1 carta de Premio, este ataque hace 100 puntos de daño más.",
it: "Se al tuo avversario è rimasta esattamente una carta Premio, questo attacco infligge 100 danni in più.",
pt: "Se o seu oponente tiver exatamente 1 carta de Prêmio restante, este ataque causará 100 pontos de dano a mais.",
de: "Wenn dein Gegner genau 1 verbleibende Preiskarte hat, fügt diese Attacke 100 Schadenspunkte mehr zu."
},
damage: "100+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card