1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12:10 +00:00

73 lines
980 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 '../Neo Discovery'
const card: Card = {
name: {
en: "Beedrill",
},
illustrator: "Aya Kusube",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
15,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Kakuna",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Triple Poison",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned. Your opponent now puts 3 damage counters instead of 1 after each player's turn (even if it was already Poisoned).",
},
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Pin Missile",
},
effect: {
en: "Flip 4 coins. This attack does 20 times the number of heads.",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card