1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

70
data-asia/SV/SV4a/208.ts Normal file
View File

@@ -0,0 +1,70 @@
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