1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

75 lines
2.0 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ブロロローム",
'zh-tw': "普隆隆姆",
id: "Revavroom"
},
illustrator: "GOSSAN",
category: "Pokemon",
dexId: [966],
hp: 140,
types: ["Metal"],
description: {
ja: "毒素と 岩の 成分を 混ぜた ガスを 8つに 増えた シリンダーで 爆発させ エネルギーを 作る。",
'zh-tw': "在增加到了8個的汽缸裡引爆混有毒素和岩石成分的 氣體來製造能量。",
id: "Revavroom menciptakan energi dengan cara meledakkan gas yang tercampur dari zat beracun dan komponen batu pada silinder motornya yang bertambah menjadi 8."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "ランブルエンジン",
'zh-tw': "轟鳴引擎",
id: "Rumble Engine"
},
effect: {
ja: "自分の番に、自分の手札からエネルギーを1枚トラッシュするなら、1回使える。自分の手札が6枚になるように、山札を引く。",
'zh-tw': "在自己的回合若從自己的手牌將1張能量卡丟棄則可使用1次。從牌庫抽卡直到自己的手牌滿6張為止。",
id: "Dapat digunakan 1 kali pada giliran sendiri jika membuang 1 lembar Energi dari Kartu Pegangan sendiri ke Trash. Ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 6 lembar."
}
}],
attacks: [{
cost: ["Metal", "Colorless", "Colorless", "Colorless"],
name: {
ja: "はねとばす",
'zh-tw': "擊飛",
id: "Menghempaskan"
},
damage: "90+",
effect: {
ja: "コインを1回投げオモテなら、90ダメージ追加。",
'zh-tw': "擲1次硬幣若為正面則增加90點傷害。",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 90."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card