1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

62
data-asia/S/S9/077.ts Normal file
View File

@ -0,0 +1,62 @@
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