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

45 lines
764 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 "../SCD"
const card: Card = {
set: Set,
name: {
'zh-tw': "鍬農炮蟲"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 150,
types: ["Lightning"],
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "咬住"
},
damage: 70,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "電氣引爆"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的2個【雷】能量丟棄對手的1隻寶可夢受到200點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Lightning", "Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "E"
}
export default card