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

70
data-asia/S/S12/028.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "倫琴貓",
th: "เร็นโทรา",
ja: "レントラー"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
hp: 160,
types: ["Lightning"],
description: {
'zh-tw': "擁有透視能力的寶可夢。能夠在眨眼間就發現躲在 厚厚牆壁另一側的獵物。",
th: "เป็นโปเกมอนที่มีตาวิเศษ สามารถมองเห็นเหยื่อที่ซ่อนอยู่หลังกำแพงหนาได้ทันที",
ja: "透視能力を もつ ポケモン。 厚い 壁の 向こうに 隠れる 獲物を たちまち 見つけだす。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "瞬間爆發力",
th: "พลังออกตัวฉับพลัน",
ja: "しゅんぱつりょく"
},
effect: {
'zh-tw': "進行對戰準備將寶可夢放置於戰鬥場上時,若手牌有這張卡,則可將這張卡反面朝上放置於戰鬥場。",
th: "เมื่อวางโปเกมอนบนตำแหน่งต่อสู้เพื่อเตรียมแบตเทิล ถ้าการ์ดนี้อยู่บนมือ นำออกมาวางคว่ำไว้บนตำแหน่งต่อสู้ก็ได้",
ja: "対戦準備でポケモンをバトル場に出すとき、このカードが手札にあるなら、ウラにしてバトル場に出してよい。"
}
}],
attacks: [{
name: {
'zh-tw': "探求獠牙",
th: "เสาะหาคมเขี้ยว",
ja: "シークファング"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張訓練家卡在給對手看過後加入手牌。並且重洗牌庫。",
th: "เลือกการ์ดเทรนเนอร์ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด",
ja: "自分の山札からトレーナーズを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。"
},
damage: 50,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "F",
rarity: "Uncommon",
dexId: [405]
}
export default card