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

63 lines
1.4 KiB
TypeScript
Raw Permalink 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ミツハニー",
'zh-tw': "三蜜蜂",
th: "มิทซึฮันนี"
},
illustrator: "HYOGONOSUKE",
rarity: "Common",
category: "Pokemon",
dexId: [415],
hp: 50,
types: ["Grass"],
description: {
ja: "夜に なると 100匹 ほどの ミツハニーが 寄り添い合って 大きな かたまりで 眠る。",
'zh-tw': "到了晚上就會有100隻左右的三蜜蜂集聚成堆,依偎著彼此睡覺。",
th: "มิทซึฮันนีกว่า 100 ตัวจะซุกตัวนอนกันเป็นก้อนใหญ่ ๆ ในตอนกลางคืน"
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "おすそわけ",
'zh-tw': "分贈",
th: "แบ่งให้"
},
effect: {
ja: "自分のベンチポケモン1匹のHPを「20」回復する。",
'zh-tw': "將自己的1隻備戰寶可夢恢復「20」HP。",
th: "ฟื้นฟู HP ของโปเกมอนบนเบนช์ฝ่ายเรา 1 ตัว [20]"
}
}, {
cost: ["Grass", "Grass"],
name: {
ja: "ぶつかる",
'zh-tw': "衝撞",
th: "กระแทก"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card