1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +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,80 @@
import { Card } from '../../../interfaces'
import Set from '../Furious Fists'
const card: Card = {
name: {
en: "Electivire",
fr: "Élekable",
},
illustrator: "PLANETA",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
466,
],
hp: 120,
types: [
"Lightning",
],
evolveFrom: {
en: "Electabuzz",
fr: "Élektek",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Tag Team Spark",
fr: "Étincelle Groupée",
},
effect: {
en: "This attack does 20 more damage for each Energy attached to your Magmortar.",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Énergie attachée à vos Maganon.",
},
damage: 20,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Gigavolt",
fr: "Gigavolt",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage. If tails, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires. Si c'est pile, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 3,
}
export default card