mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
57 lines
953 B
TypeScript
57 lines
953 B
TypeScript
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
|