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

56 lines
911 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 "../S6H"
const card: Card = {
set: Set,
name: {
'zh-tw': "冰岩怪"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 150,
types: ["Water"],
description: {
'zh-tw': "雖然身體的裂縫會因白天的活動而變大,但只要一晚就能全部長好。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "看天"
},
effect: {
'zh-tw': "若自己的棄牌區有8張以上的「競技場」卡則這隻寶可夢使用招式所需的能量全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "氣象之力"
},
effect: {
'zh-tw': "從牌庫抽卡直到自己的手牌滿6張為止。"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 4,
regulationMark: "E"
}
export default card