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

68 lines
1.8 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': "噗隆隆",
th: "โบรรอน"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Shigenori Negishi",
dexId: [965],
hp: 70,
types: ["Metal"],
description: {
ja: "鋼の 体が 本体。 岩に 張りつき その成分を エネルギーに 変えて 活動する。",
'zh-tw': "鋼鐵身軀才是本體。 會貼在岩石上將其成分 轉換成活動用的能量。",
th: "ร่างที่แท้จริงคือส่วนที่เป็นเหล็ก เกาะติดอยู่กับหินแล้วเปลี่ยนส่วนประกอบนั้นให้เป็นพลังงานที่ใช้ในการขับเคลื่อน"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "メタルコーティング",
'zh-tw': "金屬塗層",
th: "เมทัลโค้ตติ้ง"
},
effect: {
ja: "自分のトラッシュから「基本エネルギー」を1枚選び、このポケモンにつける。",
'zh-tw': "從自己的棄牌區選擇1張「基本【鋼】能量」卡附於這隻寶可夢身上。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[โลหะ]] 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนนี้"
}
}, {
cost: ["Metal", "Colorless", "Colorless"],
name: {
ja: "ぶつかる",
'zh-tw': "衝撞",
th: "กระแทก"
},
damage: 50
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "H"
}
export default card