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

56 lines
930 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 "../S8b"
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