mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV3"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ブロロン",
|
||
'zh-tw': "噗隆隆",
|
||
th: "โบรรอน"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [965],
|
||
hp: 60,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
ja: "スクラップ工場に 放置された エンジンに 謎の 毒ポケモンが 入り込んで 生まれたと 言われる。",
|
||
'zh-tw': "據說牠是神秘的毒寶可夢鑽進了被放置在廢鐵工廠 的引擎裡而誕生的。",
|
||
th: "ว่ากันว่าเกิดจากการที่โปเกมอนพิษปริศนาเข้าไปในเครื่องยนต์ที่ถูกทิ้งไว้ในโรงงานเศษเหล็ก"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Metal"],
|
||
|
||
name: {
|
||
ja: "かいてんドロー",
|
||
'zh-tw': "迴轉抽出",
|
||
th: "จั่วการ์ดหมุนวน"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
effect: {
|
||
ja: "自分の山札を1枚引く。",
|
||
'zh-tw': "從自己的牌庫抽出1張卡。",
|
||
th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา"
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |