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

60 lines
1.0 KiB
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 "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "布莉姆溫"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 150,
types: ["Psychic"],
description: {
'zh-tw': "由於會朝四周釋放足以引起頭痛的精神力量,其他生物都躲得遠遠的。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "意志尖帽"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。雙方玩家各選擇1張自己的手牌將其丟棄。對手先丟棄。沒有手牌的玩家不丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "悔恨水滴"
},
effect: {
'zh-tw': "將與自己的棄牌區的寶可夢的張數相同數量的傷害指示物,放置於對手的戰鬥寶可夢身上。"
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card