mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
45 lines
764 B
TypeScript
45 lines
764 B
TypeScript
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 |