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

25 lines
646 B
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: "ORBITALLINK Inc.",
category: "Trainer",
effect: {
'zh-tw': "選擇自己的1隻寶可夢。擲硬幣直到出現反面將那隻寶可夢恢復正面出現的次數×40點傷害相同數值的HP。",
ja: "自分のポケモンを1匹選ぶ。ウラが出るまでコインを投げ、オモテの数×40ダメージぶん、そのポケモンのHPを回復する。"
},
trainerType: "Item",
regulationMark: "F",
rarity: "Uncommon"
}
export default card