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

54 lines
1.3 KiB
TypeScript
Raw Permalink 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 霹靂電球",
ja: "ヒスイ ビリリダマ"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
'zh-tw': "形狀頗似精靈球的奇異寶可夢。 當情緒高漲時,積蓄在腹部的 電流就會放出,同時發出大笑。",
ja: "モンスターボールと 空似せし 謎の ポケモン。 気 昂るほど 腹に 蓄えし電流を 解き放ち 大笑す。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "精心充能",
ja: "ごきげんチャージ"
},
effect: {
'zh-tw': "這個招式只可在後攻玩家的最初回合使用。選擇最多2隻自己的備戰寶可夢從牌庫附給那些寶可夢各1張基本能量卡。並且重洗牌庫。",
ja: "このワザは、後攻プレイヤーの最初の番にだけ使える。自分のベンチポケモンを2匹まで選び、山札から基本エネルギーを1枚ずつつける。そして山札を切る。"
}
}, {
name: {
'zh-tw': "衝撞",
ja: "ぶつかる"
},
damage: 10,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [100]
}
export default card