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

56 lines
963 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 "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "飄浮泡泡 太陽的樣子"
},
illustrator: "Yuka Morii",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
'zh-tw': "暴露在烈日下就會變成這個樣子。如果去摸牠熱烘烘的身體,會感覺到乾巴巴的。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "看天"
},
effect: {
'zh-tw': "若自己的棄牌區有8張以上的「競技場」卡則這隻寶可夢使用招式所需的能量全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "高氣壓爆破"
},
effect: {
'zh-tw': "將場上的「競技場」丟棄。若無法丟棄,則這個招式失敗。"
},
damage: 150,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 0,
regulationMark: "E"
}
export default card