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

54 lines
1020 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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "カゲボウズ",
'zh-tw': "怨影娃娃",
'zh-cn': "怨影娃娃"
},
illustrator: "miki kudo",
rarity: "Common",
category: "Pokemon",
dexId: [353],
hp: 60,
types: ["Psychic"],
description: {
ja: "恨みや 妬みの 感情が 大好物。 ピンと立った ツノが 人間の 気持ちを キャッチする。",
'zh-tw': "最愛吃像是怨恨和嫉妒 這類的感情。會用豎立 的角來察覺人類的心情。",
'zh-cn': "最愛吃像是怨恨和嫉妒 這類的感情。會用豎立 的角來察覺人類的心情。"
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "ホロウショット",
'zh-tw': "陰森射擊",
'zh-cn': "陰森射擊"
},
damage: 20
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "I"
}
export default card