1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

54 lines
1.5 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Seviper",
fr: "Séviper",
es: "Seviper",
it: "Seviper",
pt: "Seviper",
de: "Vipitis"
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
hp: 110,
types: ["Darkness"],
attacks: [{
name: {
en: "Strong Tail",
fr: "Queue Puissante",
es: "Cola Fuerte",
it: "Fortecoda",
pt: "Cauda Poderosa",
de: "Starker Schlag"
},
effect: {
en: "If you played a Single Strike Supporter card from your hand during this turn, this attack does 90 more damage.",
fr: "Si vous avez joué une carte Supporter Poing Final de votre main pendant ce tour, cette attaque inflige 90 dégâts supplémentaires.",
es: "Si has jugado 1 carta de Partidario de Golpe Brusco de tu mano durante este turno, este ataque hace 90 puntos de daño más.",
it: "Se hai giocato una carta Aiuto Colpo Singolo dalla tua mano durante questo turno, questo attacco infligge 90 danni in più.",
pt: "Se você jogou 1 carta de Apoiador Golpe Decisivo da sua mão durante este turno, este ataque causará 90 pontos de dano a mais.",
de: "Wenn du eine Fokussierter-Angriff-Unterstützerkarte während dieses Zuges aus deiner Hand gespielt hast, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "90+",
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card