1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

67 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 "../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