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

54 lines
848 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': "強顎雞母蟲"
},
illustrator: "Asako Ito",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
'zh-tw': "會用巨大的顎部在森林中挖地製造巢穴。最喜歡甜甜的樹汁。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "帶電"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張【雷】能量卡附於這隻寶可夢身上。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "偷襲"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。"
},
damage: 50,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card