mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
49 lines
964 B
TypeScript
49 lines
964 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "カプサイジ",
|
||
'zh-tw': "熱辣娃",
|
||
'zh-cn': "熱辣娃"
|
||
},
|
||
|
||
illustrator: "Julie Hang",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [951],
|
||
hp: 70,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
ja: "パルデアの 郷土料理は 抜け落ちた カプサイジの 前歯が 使われているので 激辛なのだ。",
|
||
'zh-tw': "帕底亞當地會用熱辣娃 掉落的門牙來做料理, 所以超級無敵霹靂辣。",
|
||
'zh-cn': "帕底亞當地會用熱辣娃 掉落的門牙來做料理, 所以超級無敵霹靂辣。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "とびだしヘッド",
|
||
'zh-tw': "魯莽頭擊",
|
||
'zh-cn': "魯莽頭擊"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |