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

67 lines
1.5 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ブロロン",
'zh-tw': "噗隆隆",
id: "Varoom"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
dexId: [965],
hp: 60,
types: ["Metal"],
description: {
ja: "スクラップ工場に 放置された エンジンに 謎の 毒ポケモンが 入り込んで 生まれたと 言われる。",
'zh-tw': "據說牠是神秘的毒寶可夢鑽進了被放置在廢鐵工廠 的引擎裡而誕生的。",
id: "Dikatakan bahwa Varoom terlahir dari Pokémon racun misterius yang masuk ke dalam mesin terbengkalai di pabrik besi bekas."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ふかす",
'zh-tw': "引擎全開",
id: "Mengegas"
},
effect: {
ja: "自分のトラッシュから基本エネルギーを2枚まで選び、相手に見せて、手札に加える。",
'zh-tw': "從自己的棄牌區選擇最多2張基本能量卡在給對手看過後加入手牌。",
id: "Pilih paling banyak 2 lembar Energi Dasar dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan."
}
}, {
cost: ["Metal", "Colorless"],
name: {
ja: "ずつき",
'zh-tw': "頭錘",
id: "Tandukan Kepala"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card