mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
70 lines
1.6 KiB
TypeScript
70 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV4a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "スコヴィラン",
|
||
'zh-tw': "狠辣椒",
|
||
id: "Scovillain"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
category: "Pokemon",
|
||
dexId: [952],
|
||
hp: 110,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
ja: "レッドヘッドは 辛み成分を 炎エネルギーに 変え 激辛の 火炎放射を まき散らす。",
|
||
'zh-tw': "會把辣味成分轉換成火之能量,然後從紅色的頭朝著四周 噴灑出辣到爆炸的火焰。",
|
||
id: "Kepala merah Scovillain mengubah unsur pedas menjadi energi api dan menyebarkan semburan api yang sangat pedas."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
ja: "ダブルタイプ",
|
||
'zh-tw': "雙重屬性",
|
||
id: "Tipe Ganda"
|
||
},
|
||
|
||
effect: {
|
||
ja: "このポケモンは、場にいるかぎりとの2つのタイプになる。",
|
||
'zh-tw': "只要這隻寶可夢在場上,改為【草】與【火】2種屬性。",
|
||
id: "Selama Pokémon ini ada di Arena, Pokémon ini menjadi 2 tipe yaitu {Daun} dan {Api}."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: ["Grass", "Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "スパイシーヘッド",
|
||
'zh-tw': "香料頭擊",
|
||
id: "Spicy Head"
|
||
},
|
||
|
||
damage: 110,
|
||
|
||
effect: {
|
||
ja: "このワザのダメージは抵抗力を計算しない。",
|
||
'zh-tw': "這個招式的傷害不計算抵抗力。",
|
||
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Resistansi."
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |