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

58 lines
991 B
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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "詛咒娃娃"
},
illustrator: "kodama",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "詛咒的能量滲入被丟棄玩偶的棉花裡變成了寶可夢。如果張開嘴巴,能量就會外洩。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "退化詛咒"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。選擇對手的1隻進化的備戰寶可夢移除1張「進化卡」使其退化。將移除的卡放回對手的手牌。"
}
}],
attacks: [{
name: {
'zh-tw': "陰森射擊"
},
damage: 40,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card