mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
77 lines
940 B
TypeScript
77 lines
940 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Supreme Victors'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Combee",
|
|
fr: "Apitrini",
|
|
de: "Wadribie"
|
|
},
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
415,
|
|
],
|
|
hp: 40,
|
|
types: [
|
|
"Grass",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Grass",
|
|
],
|
|
name: {
|
|
en: "Nap",
|
|
fr: "Tit'sieste",
|
|
de: "Nickerchen"
|
|
},
|
|
effect: {
|
|
en: "Remove 2 damage counters from Combee.",
|
|
fr: "Retirez à Apitrini 2 marqueurs de dégât.",
|
|
de: "Entferne 2 Schadensmarken von Wadribie."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Zzzt",
|
|
fr: "Bzzz",
|
|
de: "Piiieks"
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+10"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|