1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

76 lines
1.4 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 '../Call of Legends'
const card: Card = {
name: {
en: "Seviper",
fr: "Seviper",
de: "Vipitis"
},
illustrator: "Wataru Kawahara",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
336,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Poison Buildup",
fr: "Empoisonnement",
de: "Giftansammlung"
},
effect: {
en: "Seviper is now Poisoned.",
fr: "Seviper est maintenant Empoisonné.",
de: "Vipitis ist jetzt vergiftet."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Poison Effect",
fr: "Effets du poison",
de: "Gift-Effekt"
},
effect: {
en: "If Seviper is Poisoned, this attack does 20 damage plus 60 more damage and remove the Special Condition Poisoned from Seviper.",
fr: "Si Seviper est Empoisonné, cette attaque inflige 20 dégâts plus 60 dégâts supplémentaires. Retirez ensuite lÉtat Spécial Empoisonné de Seviper.",
de: "Wenn Vipitis vergiftet ist, fügt dieser Angriff 20 Schadenspunkte plus 60 weitere Schadenspunkte zu; entferne den Speziellen Zustand \"Vergiftet\" von Vipitis."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card