1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

57 lines
902 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "蓋諾賽克特V"
},
illustrator: "PLANETA Tsuji",
category: "Pokemon",
hp: 190,
types: ["Metal"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "匯流系統"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從牌庫抽卡直到自己的手牌的張數與自己的場上「匯流」寶可夢的數量相同為止。"
}
}],
attacks: [{
name: {
'zh-tw': "高科技光炮"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 210,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card