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

55 lines
904 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "浩大鯨"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 180,
types: ["Water"],
description: {
'zh-tw': "迴游在冰雪地帶的寶可夢。會用強韌的肌肉和厚實的 皮下脂肪保護自己的身體。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "雪崩"
},
effect: {
'zh-tw': "對手的所有備戰寶可夢也各受到10點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 30,
cost: ["Water"]
}, {
name: {
'zh-tw': "回轉滑梯"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×100點傷害。"
},
damage: "100×",
cost: ["Water", "Water", "Water"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card