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

97 lines
2.2 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: "Beedrill",
fr: "Dardargnan",
es: "Beedrill",
it: "Beedrill",
pt: "Beedrill",
de: "Bibor"
},
illustrator: "Misa Tsutsui",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Grass"],
evolveFrom: {
en: "Kakuna",
fr: "Coconfort",
es: "Kakuna",
it: "Kakuna",
pt: "Kakuna",
de: "Kokuna"
},
attacks: [{
name: {
en: "Persist Sting",
fr: "Dard Durable",
es: "Aguijonazo Persistente",
it: "Pungiglione Ostinato",
pt: "Ferroada Persistente",
de: "Beharrlicher Stich"
},
effect: {
en: "If your opponent's Active Pokémon has any Special Energy attached, it is Knocked Out.",
fr: "Si de l'Énergie spéciale est attachée au Pokémon Actif de votre adversaire, il est mis K.O.",
es: "Si el Pokémon Activo de tu rival tiene alguna Energía Especial unida a él, queda Fuera de Combate.",
it: "Se il Pokémon attivo del tuo avversario ha delle Energie speciali assegnate, viene messo KO.",
pt: "Se o Pokémon Ativo do seu oponente tiver alguma Energia Especial ligada a ele, ele será Nocauteado.",
de: "Wenn an das Aktive Pokémon deines Gegners mindestens 1 Spezial-Energie angelegt ist, ist es kampfunfähig."
},
cost: ["Grass"]
}, {
name: {
en: "Jet Spear",
fr: "Lance Projetée",
es: "Lanza Propulsión",
it: "Lancia Jet",
pt: "Lança a Jato",
de: "Jet-Speer"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta un'Energia da questo Pokémon.",
pt: "Descarte 1 Energia deste Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 110,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
stage: "Stage2",
description: {
en: "May appear in a swarm. Flies at violent speeds, all the while stabbing with the toxic stinger on its rear."
}
}
export default card