1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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

52
data-asia/S/S12a/098.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "銅鏡怪",
th: "โดมิเรอร์",
ja: "ドーミラー"
},
illustrator: "Mizue",
category: "Pokemon",
hp: 60,
types: ["Metal"],
description: {
'zh-tw': "雖然人們說把銅鏡怪打磨到發光,牠就能映照出真相, 但其實牠非常討厭被打磨。",
th: "ว่ากันว่าถ้าขัดเงาแล้วส่องประกายจะสะท้อนให้เห็นความจริงออกมา แต่โดมิเรอร์ไม่ชอบมาก ๆ",
ja: "磨けば 光り 真実を 映しだすとも いわれるが ドーミラーは とても 嫌がる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "衝撞",
th: "กระแทก",
ja: "ぶつかる"
},
damage: 30,
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 1,
regulationMark: "E",
dexId: [436]
}
export default card