1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 03:59:54 +00:00

30 lines
354 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Beedrill"
},
category: "Pokemon",
hp: 120,
types: ["Grass"],
stage: "Stage2",
attacks: [{
cost: ["Grass"],
name: {
en: "Sharp Sting"
},
damage: "70"
}],
retreat: 1,
rarity: "None"
}
export default card