1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

54
data-asia/SV/SV3/084.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ブロロン",
'zh-tw': "噗隆隆",
th: "โบรรอน"
},
illustrator: "Saya Tsuruta",
rarity: "Common",
category: "Pokemon",
dexId: [965],
hp: 70,
types: ["Metal"],
description: {
ja: "スクラップ工場に 放置された エンジンに 謎の 毒ポケモンが 入り込んで 生まれたと 言われる。",
'zh-tw': "據說牠是神秘的毒寶可夢鑽進了被放置在廢鐵工廠 的引擎裡而誕生的。",
th: "ว่ากันว่าเกิดจากการที่โปเกมอนพิษปริศนาเข้าไปในเครื่องยนต์ที่ถูกทิ้งไว้ในโรงงานเศษเหล็ก"
},
stage: "Basic",
attacks: [{
cost: ["Metal", "Colorless"],
name: {
ja: "ガスでつつむ",
'zh-tw': "瓦斯包圍",
th: "ห่อหุ้มด้วยแก๊ส"
},
damage: 30
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card