1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

74 lines
1.3 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 '../Evolutions'
const card: Card = {
name: {
en: "Beedrill",
fr: "Dardargnan",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
15,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Kakuna",
fr: "Coconfort",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Poison Sting",
fr: "Dard-Venin",
},
effect: {
en: "Your opponent's Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
},
damage: 30,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Swarming Sting",
fr: "Essaim Piqûre",
},
effect: {
en: "This attack does 40 damage times the number of Beedrill you have in play to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 40 dégâts, multipliés par le nombre de Dardargnan que vous avez en jeu, à lun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card