mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 12:09:53 +00:00
59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Triumphant Light"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Combee",
|
|
fr: "Apitrini",
|
|
es: "Combee",
|
|
it: "Combee",
|
|
de: "Wadribie",
|
|
'pt-br': "Combee",
|
|
ko: "세꿀버리"
|
|
},
|
|
|
|
illustrator: "Akira Komayama",
|
|
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.",
|
|
fr: "À la nuit tombée, les Apitrini s'agglutinent\npar grappes de cent pour dormir.",
|
|
es: "Cuando llega la noche, se juntan unos cien\nCombee y duermen formando una gran colmena.",
|
|
it: "Scesa la notte, formano dei grandi alveari di\ncirca 100 esemplari e dormono raggruppati.",
|
|
de: "Des Nachts schmiegen sich bis zu 100 Wadribie\naneinander und formieren sich so zum Schlafen\nzu einem großen Gebilde.",
|
|
'pt-br': "À noite, Combee dormem amontados\nem grupos de aproximadamente cem indivíduos.",
|
|
ko: "밤이 되면 100마리 정도의\n세꿀버리가 모여\n커다란 덩어리가 되어 잠잔다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Bug Bite",
|
|
fr: "Piqûre",
|
|
es: "Picadura",
|
|
it: "Coleomorso",
|
|
de: "Käferbiss",
|
|
'pt-br': "Picada",
|
|
ko: "벌레먹기"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Grass"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|