1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

55 lines
1.5 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "カプサイジ",
'zh-tw': "熱辣娃",
th: "แคปไซจิ"
},
illustrator: "Pani Kobayashi",
rarity: "Common",
category: "Pokemon",
dexId: [951],
hp: 70,
types: ["Grass"],
description: {
ja: "太陽の 光を 浴びるほど 体内で 辛み成分が 増えて 技が どんどん 辛くなるのだ。",
'zh-tw': "沐浴在太陽下越久,體內的辣味成分就會增加得越多, 招式也會變得越來越辣。",
th: "ยิ่งอาบแสงอาทิตย์มากเท่าไหร่ สารเผ็ดในร่างกายก็จะเพิ่มขึ้น และท่าโจมตีก็จะค่อย ๆ เผ็ดขึ้นด้วย"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "にどずつき",
'zh-tw': "二連頭錘",
th: "พุ่งหัวชนสองครั้ง"
},
damage: "50×",
effect: {
ja: "コインを2回投げ、オモテの数×50ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×50點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x50"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card