1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* 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
2021-10-26 10:40:03 +02:00

68 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "Constant polishing makes the edge of the blade on its tail extremely sharp. It's Zangoose's archrival."
}
}
export default card