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

52 lines
786 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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "戽斗尖梭"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "像長矛一樣尖銳的下巴擁有鋼鐵般的硬度。據說牠的肉好吃得驚人。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "啄"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "螺旋飛衝"
},
effect: {
'zh-tw': "將自己的手牌的2張【水】能量卡丟棄。若無法丟棄2張則這個招式失敗。"
},
damage: 130,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card