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

57 lines
946 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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "怖思壺V"
},
illustrator: "PLANETA Igarashi",
category: "Pokemon",
hp: 170,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "驚嚇茶壺"
},
effect: {
'zh-tw': "當這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害時在不看正面的情況下從對手的手牌選擇1張在看過那張卡的正面後放回對手的牌庫下方。"
}
}],
attacks: [{
name: {
'zh-tw': "精神歪曲"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card