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

90 lines
2.0 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Seviper",
fr: "Séviper",
es: "Seviper",
it: "Seviper",
pt: "Seviper",
de: "Vipitis"
},
illustrator: "Eri Yamaki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
336,
],
hp: 100,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "More Poison",
fr: "Poison Sans Fin",
es: "Veneno Plus",
it: "Più Veleno",
pt: "Veneno a Mais",
de: "Giftschub"
},
effect: {
en: "Put 1 more damage counter on your opponents Poisoned Pokémon between turns.",
fr: "Placez 1 marqueur de dégâts supplémentaire sur le Pokémon Empoisonné de votre adversaire entre chaque tour.",
es: "Pon 1 contador de daño más en el Pokémon Envenenado de tu rival entre turnos.",
it: "Metti un segnalino danno in più sul Pokémon avvelenato del tuo avversario tra un turno e laltro.",
pt: "Coloque 1 contador de dano a mais no Pokémon Envenenado do seu oponente entre as vezes de jogar.",
de: "Lege zwischen den Zügen 1 Schadensmarke mehr auf das vergiftete Pokémon deines Gegners."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Venomous Fang",
fr: "Croc-Poison",
es: "Colmillo Nocivo",
it: "Dentevelenoso",
pt: "Dente Venenoso",
de: "Gifthauer"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card