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

59 lines
1.5 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 "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ドーミラー",
'zh-tw': "銅鏡怪",
th: "โดมิเรอร์"
},
illustrator: "sowsow",
category: "Pokemon",
dexId: [436],
hp: 80,
types: ["Psychic"],
description: {
ja: "ドーミラーの 背中の 模様には 神秘的な 力が 宿ると 昔の 人たちは 信じていた。",
'zh-tw': "過去的人們相信,銅鏡怪背上的花紋裡 蘊藏著神秘的力量。",
th: "ผู้คนในอดีตเชื่อกันว่าลายที่หลังโดมิเรอร์มีพลังลึกลับซ่อนอยู่"
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "ミラーアタック",
'zh-tw': "鏡面攻擊",
th: "มิเรอร์แอทแทก"
},
damage: "10+",
effect: {
ja: "相手のバトルポケモンがポケモンなら、30ダメージ追加。",
'zh-tw': "若對手的戰鬥寶可夢為【超】寶可夢則增加30點傷害。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอน[พลังจิต] การโจมตีนี้จะเพิ่มแดเมจอีก 30"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "H"
}
export default card