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

54
data-asia/SV/SV6a/040.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蓋諾賽克特"
},
illustrator: "Kazumasa Yasukuni",
category: "Pokemon",
hp: 110,
types: ["Metal"],
description: {
'zh-tw': "被等離子隊改造過的 古代的蟲寶可夢。 背上的大砲力量得到了提升。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "[特性]ACE消弭"
},
effect: {
'zh-tw': "若這隻寶可夢附有「寶可夢道具」卡則對手無法從手牌使出「【ACE SPEC】」卡。"
}
}, {
name: {
'zh-tw': "磁力爆破"
},
damage: 100,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "H",
rarity: "Uncommon"
}
export default card