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

41 lines
587 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "布魯"
},
illustrator: "otumami",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
'zh-tw': "臉看起來很嚴厲,但其實相當膽小。那拼命作出威嚇的表情很受女性歡迎。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "銳利之牙"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card