1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

74 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Primal Clash'
const card: Card = {
name: {
en: "Beedrill",
fr: "Dardargnan",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
15,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Kakuna",
fr: "Coconfort",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Allergic Shock",
fr: "Choc Allergique",
},
effect: {
en: "During your next turn, if the Defending Pokémon is damaged by an attack, it is Knocked Out.",
fr: "Pendant votre prochain tour, si le Pokémon Défenseur subit les dégâts d'une attaque, il est mis K.O.",
},
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Twineedle",
fr: "Double-Dard",
},
effect: {
en: "Flip 2 coins. This attack does 50 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card