mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 22:09:54 +00:00
44 lines
631 B
TypeScript
44 lines
631 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Combee"
|
|
},
|
|
|
|
illustrator: "Yukiko Baba",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Grass"],
|
|
|
|
description: {
|
|
en: "At night, Combee sleep in a group of about a hundred, packed closely together in a lump."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Call for Family"
|
|
},
|
|
|
|
cost: ["Colorless"],
|
|
|
|
effect: {
|
|
en: "Put 1 random from your deck onto your Bench."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|