mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
56 lines
910 B
TypeScript
56 lines
910 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S8b"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "飄浮泡泡"
|
||
},
|
||
|
||
illustrator: "Asako Ito",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
'zh-tw': "樣子會隨著天氣而變化。天氣越是惡劣,性情就會變得越粗暴。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
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: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 0,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |