mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
52 lines
795 B
TypeScript
52 lines
795 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SC2b"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "鍬農炮蟲V"
|
||
},
|
||
|
||
illustrator: "Ayaka Yoshida",
|
||
category: "Pokemon",
|
||
hp: 210,
|
||
types: ["Lightning"],
|
||
stage: "Basic",
|
||
suffix: "V",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "麻痺伏特"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在下個對手的回合,對手無法從手牌使出物品卡。"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Lightning", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "超電磁砲"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。"
|
||
},
|
||
|
||
damage: 190,
|
||
cost: ["Lightning", "Lightning", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|