1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

57 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "三蜜蜂",
ja: "ミツハニー"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
'zh-tw': "3隻一直都在一起,但每一隻對花蜜的 喜好卻略有不同。",
ja: "いつも 一緒の 3匹だけど それぞれの 花の 蜜の 好みは 微妙に 違う。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "蜜之搬運",
ja: "みつはこび"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張物品卡在給對手看過後加入手牌。並且重洗牌庫。",
ja: "自分の山札からグッズを1枚選び、相手に見せて、手札に加える。そして山札を切る。"
},
cost: ["Grass"]
}, {
name: {
'zh-tw': "蟲咬",
ja: "むしくい"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [415]
}
export default card