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

61 lines
1.3 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 "../SPZ"
const card: Card = {
set: Set,
name: {
'zh-tw': "啪嚓海膽",
ja: "バチンウニ"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
description: {
'zh-tw': "能從刺的尖端放電。會用銳利的牙齒刮取附在岩石上的海藻來吃。",
ja: "棘の 先から 電気を 放つ。 鋭い 歯で 岩に ついた 海藻を こそいで 食べる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "呼朋引伴",
ja: "なかまをよぶ"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
ja: "自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "連續滾動",
ja: "れんぞくころがり"
},
effect: {
'zh-tw': "擲硬幣直到出現反面增加正面出現的次數×30點傷害。",
ja: "ウラが出るまでコインを投げ、オモテの数×30ダメージ追加。"
},
damage: "30",
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [871]
}
export default card