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

47 lines
699 B
TypeScript
Raw Permalink 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: "Kyoko Umemoto",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "個性與外表相反,其實很膽小。要是把牠和其他小狗寶可夢放在一起,牠有可能會被欺負。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "頭錘"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "咬住"
},
damage: 30,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card