1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

63
data-asia/SV/SV6/077.ts Normal file
View File

@ -0,0 +1,63 @@
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