1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

67
data-asia/SV/SV4a/020.ts Normal file
View File

@ -0,0 +1,67 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "カプサイジ",
'zh-tw': "熱辣娃",
th: "แคปไซจิ",
id: "Capsakid"
},
illustrator: "GIDORA",
category: "Pokemon",
dexId: [951],
hp: 70,
types: ["Grass"],
description: {
ja: "パルデアの 郷土料理は 抜け落ちた カプサイジの 前歯が 使われているので 激辛なのだ。",
'zh-tw': "帕底亞當地會用熱辣娃掉落的門牙來做料理, 所以超級無敵霹靂辣。",
th: "อาหารท้องถิ่นของพัลเดียมีรสชาติเผ็ดมากเพราะใช้ฟันหน้าที่ร่วงหล่นของแคปไซจิเป็นวัตถุดิบ",
id: "Rasa masakan khas Paldea sangat pedas karena dibuat menggunakan gigi depan Capsakid yang lepas."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "からくなる",
'zh-tw': "變辣",
th: "เผ็ดขึ้น",
id: "Memedaskan"
},
effect: {
ja: "自分の山札から「基本エネルギー」を1枚選び、このポケモンにつける。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張「基本【火】能量」卡附於這隻寶可夢身上。並且重洗牌庫。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[ไฟ]] 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด",
id: "Pilih 1 lembar Energi Dasar {Api} dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck."
}
}, {
cost: ["Grass", "Colorless", "Colorless"],
name: {
ja: "やんちゃげり",
'zh-tw': "調皮踢",
th: "เตะแกล้ง",
id: "Tendangan Nakal"
},
damage: 50
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card