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

63 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "ジヘッド",
'zh-tw': "雙首暴龍",
'zh-cn': "雙首暴龍"
},
illustrator: "chibi",
rarity: "Common",
category: "Pokemon",
dexId: [634],
hp: 100,
types: ["Darkness"],
description: {
ja: "2つの 頭は 好みが 違う。 頭同士 争うことで だれの 力も 借りずに 強くなるのだ。",
'zh-tw': "2顆頭各有喜好。 由於頭之間會互相爭鬥, 因此不靠外力也能變強。",
'zh-cn': "2顆頭各有喜好。 由於頭之間會互相爭鬥, 因此不靠外力也能變強。"
},
stage: "Stage1",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ふみならす",
'zh-tw': "踩落",
'zh-cn': "踩落"
},
effect: {
ja: "相手の山札を上から2枚トラッシュする。",
'zh-tw': "將對手的牌庫上方2張卡丟棄。",
'zh-cn': "將對手的牌庫上方2張卡丟棄。"
}
}, {
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "やみのキバ",
'zh-tw': "暗之牙",
'zh-cn': "暗之牙"
},
damage: 60
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card