1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

63 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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