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

51 lines
794 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: "MAHOU",
category: "Pokemon",
hp: 140,
types: ["Colorless"],
description: {
'zh-tw': "肚子上的體毛保溫性能優秀。在過去,人們會用牠掉落的毛來製作保暖服裝。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "頭突"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "猛撞"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。"
},
damage: 150,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "E"
}
export default card