1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

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

This commit is contained in:
2024-10-10 00:44:36 +02:00
committed by GitHub
parent 4f2c27937a
commit 1d14078dd8
365 changed files with 13098 additions and 481 deletions

57
data-asia/SV/SV6a/025.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "月月熊 赫月"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
description: {
'zh-tw': "會用堅硬如鐵的泥巴保護身體, 且擁有能夠看穿黑暗的左眼。 是特別的月月熊。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "經驗法則"
},
effect: {
'zh-tw': "在自己的回合從手牌將這張卡放置於備戰區時可使用1次。從自己的手牌選擇最多2張「基本【鬥】能量」卡附於這隻寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "瘋狂啃咬"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×30點傷害。"
},
damage: "100+",
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "H",
rarity: "Rare"
}
export default card