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

61
data-asia/SV/SVD/087.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "普隆隆姆"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 140,
types: ["Metal"],
description: {
'zh-tw': "在增加到了8個的汽缸裡引爆混有毒素和岩石成分的 氣體來製造能量。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "轟鳴引擎"
},
effect: {
'zh-tw': "在自己的回合若從自己的手牌將1張能量卡丟棄則可使用1次。從牌庫抽卡直到自己的手牌滿6張為止。"
}
}],
attacks: [{
name: {
'zh-tw': "擊飛"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加90點傷害。"
},
damage: "90+",
cost: ["Metal", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card