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

52 lines
943 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 "../S6H"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 呆呆王"
},
illustrator: "Naoki Saito",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "會一邊吟唱詭怪的咒語,一邊混合吃進的東西和體內的毒素來製造可疑的藥。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "秘密藥"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。選擇自己的1隻寶可夢擲1次硬幣。若為正面則將那隻寶可夢恢復「90」HP。若為反面則在那隻寶可夢身上放置3個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "噴汁"
},
damage: 90,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card