1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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/S12/058.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "酷豹",
th: "เลพัลดัส",
ja: "レパルダス"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
description: {
'zh-tw': "雖然人們容易被牠美麗的毛皮和姿態所迷惑,但牠其實 是一種善變而凶暴的寶可夢。",
th: "มักจะหลงใหลไปกับขนและลักษณะที่สวยงาม แต่เป็นโปเกมอนที่บ้าคลั่งและอารมณ์แปรปรวน",
ja: "美しい 毛並みと スタイルに 惑わされがちだが 気まぐれで 狂暴な ポケモンなのだ。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "亂抓",
th: "ข่วนแหลก",
ja: "みだれひっかき"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×40點傷害。",
th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x40",
ja: "コインを3回投げ、オモテの数×40ダメージ。"
},
damage: "40×",
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "利爪劈擊",
th: "กรงเล็บฉีกร่าง",
ja: "ツメできりさく"
},
damage: 110,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [510]
}
export default card