1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

75 lines
2.2 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Éthernatos V",
en: "Eternatus V",
es: "Eternatus V",
it: "Eternatus V",
pt: "Eternatus V",
de: "Endynalos V"
},
illustrator: "5ban Graphics",
rarity: "Secret Rare",
category: "Pokemon",
hp: 220,
types: ["Darkness"],
attacks: [{
name: {
fr: "Accélérateur de Puissance",
en: "Power Accelerator",
es: "Acelerador de Potencia",
it: "Accelerapotenza",
pt: "Aceleração Poderosa",
de: "Kraftbeschleuniger"
},
effect: {
fr: "Vous pouvez attacher une carte Énergie Darkness de votre main à lun de vos Pokémon de Banc.",
en: "You may attach a Darkness Energy card from your hand to 1 of your Benched Pokémon.",
es: "Puedes unir 1 carta de Energía Darkness de tu mano a 1 de tus Pokémon en Banca.",
it: "Puoi assegnare a uno dei tuoi Pokémon in panchina una carta Energia Darkness dalla tua mano.",
pt: "Você pode ligar 1 carta de Energia Darkness da sua mão a 1 dos seus Pokémon no Banco.",
de: "Du kannst 1 Darkness-Energiekarte aus deiner Hand an 1 Pokémon auf deiner Bank anlegen."
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
fr: "Canon Dynamax",
en: "Dynamax Cannon",
es: "Cañón Dinamax",
it: "Cannone Dynamax",
pt: "Canhão Dinamax",
de: "Dynamax-Kanone"
},
effect: {
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-VMAX, cette attaque inflige 120 dégâts supplémentaires.",
en: "If your opponents Active Pokémon is a Pokémon VMAX, this attack does 120 more damage.",
es: "Si el Pokémon Activo de tu rival es un Pokémon VMAX, este ataque hace 120 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-VMAX, questo attacco infligge 120 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon VMAX, este ataque causará 120 pontos de dano a mais.",
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-VMAX ist, fügt diese Attacke 120 Schadenspunkte mehr zu."
},
damage: "120+",
cost: ["Darkness", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card