1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

71
data-asia/SV/SV3/011.ts Normal file
View File

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