mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* 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
80 lines
1.4 KiB
TypeScript
80 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Beedrill",
|
||
fr: "Dardargnan",
|
||
es: "Beedrill",
|
||
it: "Beedrill",
|
||
pt: "Beedrill",
|
||
de: "Bibor"
|
||
},
|
||
|
||
illustrator: "Hideki Ishikawa",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 140,
|
||
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Kakuna",
|
||
fr: "Coconfort"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Poison Jab",
|
||
fr: "Direct Toxik",
|
||
es: "Puya Nociva",
|
||
it: "Velenpuntura",
|
||
pt: "Golpe Envenenado",
|
||
de: "Gifthieb"
|
||
},
|
||
effect: {
|
||
en: "Your opponent's 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: 80,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
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
|