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

63
data-asia/S/S12/045.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "咚咚鼠",
th: "เดเด็นเนะ",
ja: "デデンネ"
},
illustrator: "Shiburingaru",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "能用鬍鬚接收來自夥伴們的電波,藉此向彼此分享 哪裡有食物或電力。",
th: "ใช้หนวดจับคลื่นสัญญาณที่พวกพ้องปล่อยออกมา ทุกตัวจะแบ่งปันตำแหน่งของอาหารและไฟฟ้าให้กัน",
ja: "仲間の 放つ 電波を ヒゲで キャッチ。 エサや 電気の ありかを みんなで シェアするのだ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "尾擊",
th: "ฟาดหาง",
ja: "しっぽでたたく"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "咚咚短路",
th: "เดเดช็อต",
ja: "デデショート"
},
effect: {
'zh-tw': "這個招式必須在上個自己的回合「托戈德瑪爾」使用了「托戈衝刺」才可使用。將對手的戰鬥寶可夢【麻痺】。",
th: "ท่าต่อสู้นี้ ในเทิร์นก่อนของฝ่ายเรา ถ้า [โทเกะเดมารุ] ไม่ได้ใช้ [โทเกะแดช] จะใช้ไม่ได้ ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]",
ja: "このワザは、前の自分の番に「トゲデマル」が「トゲダッシュ」を使っていなければ使えない。相手のバトルポケモンをマヒにする。"
},
damage: 60,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [702]
}
export default card