1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

feat(asian): Updated SV6 and added SV6a & SV6s (#502)

This commit is contained in:
2024-10-10 00:44:36 +02:00
parent bfe885b508
commit 5e4ba51064
365 changed files with 13098 additions and 481 deletions

52
data-asia/SV/SV6a/015.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "普隆隆姆ex"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 280,
types: ["Lightning"],
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "暴衝閃光"
},
effect: {
'zh-tw': "在這個回合若從備戰區將這隻寶可夢放置於戰鬥場則增加120點傷害。"
},
damage: "20+",
cost: ["Metal"]
}, {
name: {
'zh-tw': "高速破壞"
},
effect: {
'zh-tw': "將這隻寶可夢與附加的卡全部丟棄。"
},
damage: 250,
cost: ["Metal", "Metal", "Metal"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Double rare"
}
export default card