mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 20:49:54 +00:00
32 lines
391 B
TypeScript
32 lines
391 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Beedrill"
|
|
},
|
|
|
|
illustrator: "You Iribi",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Grass"],
|
|
stage: "Stage2",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Sharp Sting"
|
|
},
|
|
|
|
damage: "70"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "Three Diamond"
|
|
}
|
|
|
|
export default card
|