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

62 lines
1.2 KiB
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 "../SLD"
const card: Card = {
set: Set,
name: {
'zh-tw': "烏鴉頭頭",
ja: "ドンカラス"
},
illustrator: "Shiburingaru",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "與敵人的戰鬥幾乎全由手下來應付。只有在最後給對手致命一擊的時候,才會弄髒自己的手。",
ja: "敵と 戦うのは ほぼ 子分。 自分の 手を 汚すのは 相手に 最後の 止めを 刺すときだけ。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "啄",
ja: "つつく"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "暗黑旋風",
ja: "ナイトサイクロン"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的所有能量,以任意方式改附於備戰寶可夢身上。",
ja: "このポケモンについているエネルギーをすべて、ベンチポケモンに好きなようにつけ替える。"
},
damage: 160,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
dexId: [430]
}
export default card