1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

59
data-asia/SV/SV-P/048.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "普隆隆姆"
},
illustrator: "Nisota Niso",
category: "Pokemon",
hp: 140,
types: ["Metal"],
description: {
'zh-tw': "在增加到了8個的汽缸裡 引爆混有毒素和岩石成分的 氣體來製造能量。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "虛張聲勢"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
},
cost: ["Metal"]
}, {
name: {
'zh-tw': "宏大衝撞"
},
effect: {
'zh-tw': "若自己手牌的張數比對手手牌的張數多則增加80點傷害。"
},
damage: "70+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card