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

57 lines
953 B
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 "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 蛇紋熊"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "一直在奔跑,永遠靜不下來。如果發現了其他的寶可夢,就會故意撞上去挑起事端。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "煩躁頭擊"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。在對手的1隻寶可夢身上放置1個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "偷襲"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。"
},
damage: 30,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card