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

52 lines
870 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 "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "大劍鬼"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 160,
types: ["Water"],
description: {
'zh-tw': "揮舞藏在鎧甲裡的劍,一劍就能擊倒對手。瞪一眼就能讓敵人嚇得不敢出聲。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "硬殼盔甲"
},
effect: {
'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。"
}
}, {
name: {
'zh-tw': "水流清洗"
},
effect: {
'zh-tw': "若希望選擇2個對手的戰鬥寶可夢身上附加的能量放回對手的手牌。"
},
damage: 120,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card