1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../Double Crisis'
const card: Card = {
name: {
en: "Team Aqua's Seviper",
fr: "Séviper de la Team Aqua",
},
illustrator: "Naoki Saito",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
336,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Venomous Fang",
fr: "Croc-Poison",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Poisoned.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Venom Tail",
fr: "Queue Venimeuse",
},
effect: {
en: "If your opponent's Active Pokémon is affected by a Special Condition, discard an Energy attached to that Pokémon.",
fr: "Si le Pokémon Actif de votre adversaire est affecté par un État Spécial, défaussez une Énergie lui étant attachée.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card