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

61 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: "kirisAki",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "住在古董茶壺裡。雖然大多數都是贗品,但偶爾也能發現真貨。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "喫茶小憩"
},
effect: {
'zh-tw': "在自己的回合若從自己的手牌將1張持有「瘋狂派對」招式的寶可夢卡丟棄則可使用1次。從自己的牌庫抽出2張卡。"
}
}],
attacks: [{
name: {
'zh-tw': "瘋狂派對"
},
effect: {
'zh-tw': "造成自己的棄牌區的持有「瘋狂派對」招式的寶可夢的數量×20點傷害。"
},
damage: "20×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card