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

53
data-asia/SV/SV6a/002.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "電蜘蛛"
},
illustrator: "mashu",
category: "Pokemon",
hp: 100,
types: ["Grass"],
description: {
'zh-tw': "發射腹部帶電的毛來攻擊。 要是被牠的毛刺中, 就會全身麻痺三天三夜。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "[特性]複眼"
},
effect: {
'zh-tw': "這隻寶可夢使用的招式,對對手的戰鬥場的擁有特性的寶可夢造成的傷害「+50」點。"
}
}, {
name: {
'zh-tw': "麻麻羅網"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有【雷】能量卡則增加80點傷害。"
},
damage: "50+",
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Uncommon"
}
export default card