1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

54 lines
882 B
TypeScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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