1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

59
data-asia/SV/SV5K/074.ts Normal file
View File

@ -0,0 +1,59 @@
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