1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 16:19:54 +00:00

73 lines
1.0 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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Beedrill",
fr: "Dardargnan",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
15,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Kakuna",
fr: "Coconfort",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Swift Sting",
fr: "Piqûre Vive",
},
effect: {
en: "If this Pokémon has full HP, this attack does 40 more damage, and the Defending Pokémon is now Confused and Poisoned.",
fr: "Si ce Pokémon a tous ses PV, cette attaque inflige 40 dégâts supplémentaires, et le Pokémon Défenseur est maintenant Confus et Empoisonné.",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Pierce",
fr: "Transpercement",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card