1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 23:29:55 +00:00

71 lines
1008 B
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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Beedrill",
fr: "Dardargnan",
},
illustrator: "kirisAki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
15,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Kakuna",
fr: "Coconfort",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Sudden Sting",
fr: "Piqûre Inattendue",
},
effect: {
en: "If this Pokémon evolved from Kakuna during this turn, your opponent's Active Pokémon is now Paralyzed and Poisoned.",
fr: "Si ce Pokémon a évolué de Coconfort pendant ce tour, le Pokémon Actif de votre adversaire est maintenant Paralysé et Empoisonné.",
},
damage: 10,
},
{
cost: [
"Grass",
],
name: {
en: "Sharp Sting",
fr: "Piqûre Pointue",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card