1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

63 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ブロロン",
'zh-tw': "噗隆隆"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Shigenori Negishi",
dexId: [965],
hp: 70,
types: ["Metal"],
description: {
ja: "鋼の 体が 本体。 岩に 張りつき その成分を エネルギーに 変えて 活動する。",
'zh-tw': "鋼鐵身軀才是本體。 會貼在岩石上將其成分 轉換成活動用的能量。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "メタルコーティング",
'zh-tw': "金屬塗層"
},
effect: {
ja: "自分のトラッシュから「基本エネルギー」を1枚選び、このポケモンにつける。",
'zh-tw': "從自己的棄牌區選擇1張「基本【鋼】能量」卡附於這隻寶可夢身上。"
}
}, {
cost: ["Metal", "Colorless", "Colorless"],
name: {
ja: "ぶつかる",
'zh-tw': "衝撞"
},
damage: 50
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "H"
}
export default card