mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
52 lines
801 B
TypeScript
52 lines
801 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S10b"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "膽小蟲"
|
||
},
|
||
|
||
illustrator: "Miki Tanaka",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
'zh-tw': "無論是腐爛的東西還是垃圾都能吃光光,是大自然的清道夫。巢穴附近總是保持乾淨。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "懦弱"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "若對手的場上有「寶可夢【V】」,則這隻寶可夢【撤退】所需的能量全部消除。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "咬"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Water"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "F"
|
||
}
|
||
|
||
export default card |