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

62 lines
1.2 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "飄浮泡泡",
ja: "ポワルン"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
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': "選擇1個這隻寶可夢身上附加的基本能量改附於備戰寶可夢身上。",
ja: "このポケモンについている基本エネルギーを1個選び、ベンチポケモンにつけ替える。"
},
damage: 30,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [351]
}
export default card