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

52 lines
789 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 "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "刺甲貝"
},
illustrator: "MAHOU",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "貝殼非常堅硬,連凝固汽油彈都無法破壞。只有攻擊的時候才會張開。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "貝殼夾緊"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "水炮粉碎"
},
damage: 100,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card