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

64 lines
1.1 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "デスマス",
'zh-tw': "哭哭面具",
'zh-cn': "哭哭面具"
},
illustrator: "IKEDA Saki",
rarity: "Common",
category: "Pokemon",
dexId: [562],
hp: 70,
types: ["Psychic"],
description: {
ja: "夜な夜な 遺跡を さまよう。 もっている マスクは 人 だった ころの 自分の 顔 だという。",
'zh-tw': "每天夜裡都在遺跡中徘徊。 據說牠拿著的面具 是牠還是人類時的臉。",
'zh-cn': "每天夜裡都在遺跡中徘徊。 據說牠拿著的面具 是牠還是人類時的臉。"
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "つぶやく",
'zh-tw': "囈語",
'zh-cn': "囈語"
},
damage: 10
}, {
cost: ["Psychic", "Colorless"],
name: {
ja: "ちょっとうらむ",
'zh-tw': "咒怨一下",
'zh-cn': "咒怨一下"
},
damage: 20
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "H"
}
export default card