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

63
data-asia/S/S12a/089.ts Normal file
View File

@ -0,0 +1,63 @@
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