1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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/SV/SV4K/048.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "レパルダス",
'zh-tw': "酷豹",
th: "เลพัลดัส"
},
illustrator: "Yoshioka",
rarity: "Common",
category: "Pokemon",
dexId: [510],
hp: 100,
types: ["Darkness"],
description: {
ja: "フォクスライと 縄張りを めぐり 争う。 音ひとつ たてずに 獲物の 背後に 忍び寄る。",
'zh-tw': "和狐大盜爭搶地盤。能夠悄無聲息地 從背後偷偷靠近獵物。",
th: "ต่อสู้แย่งชิงอาณาเขตกับฟ็อกสไล ลอบเข้าใกล้เหยื่อจากทางด้านหลังได้โดยไม่มีเสียงแม้แต่นิดเดียว"
},
stage: "Stage1",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ダーティスワップ",
'zh-tw': "惡劣置換",
th: "เดอร์ตี้สว็อป"
},
effect: {
ja: "自分のベンチポケモンを1匹選び、選んだポケモンにのっているダメカンをすべて、相手のバトルポケモンにのせ替える。",
'zh-tw': "選擇1隻自己的備戰寶可夢將所選的寶可夢身上放置的傷害指示物全部改放於對手的戰鬥寶可夢身上。",
th: "เลือกโปเกมอนบนเบนช์ฝ่ายเรา 1 ตัว ย้ายตัวนับแดเมจที่วางอยู่บนโปเกมอนที่เลือกทั้งหมด ไปวางที่โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "きりさく",
'zh-tw': "劈開",
th: "ฟันแหลก"
},
damage: 60
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card