1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Space-Time Smackdown/157.ts
2025-02-19 21:52:42 +01:00

44 lines
626 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Combee"
},
illustrator: "Shibuzoh.",
rarity: "One Star",
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