1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

63 lines
1.8 KiB
TypeScript
Raw Permalink 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "酷豹",
th: "เลพัลดัส",
ja: "レパルダス"
},
illustrator: "saino misaki",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
description: {
'zh-tw': "雖然人們容易被牠美麗的毛皮和姿態所迷惑,但牠其實 是一種善變而凶暴的寶可夢。",
th: "มักจะหลงใหลไปกับขนและลักษณะที่สวยงาม แต่เป็นโปเกมอนที่บ้าคลั่งและอารมณ์แปรปรวน",
ja: "美しい 毛並みと スタイルに 惑わされがちだが 気まぐれで 狂暴な ポケモンなのだ。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "交易",
th: "แลกเปลี่ยน",
ja: "とりひき"
},
effect: {
'zh-tw': "在自己的回合時若將自己的1張手牌丟棄則可使用1次。從自己的牌庫抽出2張卡。",
th: "ในเทิร์นฝ่ายเรา ถ้าทิ้งการ์ดบนมือฝ่ายเรา 1 ใบที่ตำแหน่งทิ้งการ์ด จะสามารถใช้ได้ 1 ครั้ง จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา",
ja: "自分の番に、自分の手札を1枚トラッシュするなら、1回使える。自分の山札を2枚引く。"
}
}],
attacks: [{
name: {
'zh-tw': "劈開",
th: "ฟันแหลก",
ja: "きりさく"
},
damage: 60,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [510]
}
export default card