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

71 lines
1.9 KiB
TypeScript
Raw Permalink 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: "kodama",
rarity: "Rare",
category: "Pokemon",
dexId: [952],
hp: 110,
types: ["Grass"],
description: {
ja: "レッドヘッドは 辛み成分を 炎エネルギーに 変え 激辛の 火炎放射を まき散らす。",
'zh-tw': "會把辣味成分轉換成火之能量,然後從紅色的頭朝著四周噴灑出辣到爆炸的火焰。",
th: "หัวสีแดงจะเปลี่ยนสารเผ็ดเป็นพลังงานไฟ และพ่นเพลิงสุดเผ็ดร้อนออกมา"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "ダブルタイプ",
'zh-tw': "雙重屬性",
th: "ดับเบิลไทป์"
},
effect: {
ja: "このポケモンは、場にいるかぎりとの2つのタイプになる。",
'zh-tw': "只要這隻寶可夢在場上改為【草】與【火】2種屬性。",
th: "โปเกมอนนี้ ตราบใดที่ยังอยู่บนกระดาน จะเป็น 2 ประเภทคือ[หญ้า]และ[ไฟ]"
}
}],
attacks: [{
cost: ["Grass", "Colorless", "Colorless"],
name: {
ja: "スパイシーヘッド",
'zh-tw': "香料頭擊",
th: "สไปซีเฮด"
},
damage: 110,
effect: {
ja: "このワザのダメージは抵抗力を計算しない。",
'zh-tw': "這個招式的傷害不計算抵抗力。",
th: "แดเมจของท่าต่อสู้นี้จะไม่นำความต้านทานมาคิด"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card