1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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/SV1S/058.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "ドドゲザン",
'zh-tw': "仆斬將軍",
th: "โดโดเกซัน",
id: "Kingambit"
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
dexId: [983],
hp: 170,
types: ["Darkness"],
description: {
ja: "ドドゲザンに 進化できるのは 大軍勢の 頂点に 立った 1匹の キリキザンだけなのだ。",
'zh-tw': "在勢力浩大的軍團中,唯有站上頂點的那1隻劈斬司令, 才能進化成仆斬將軍。",
th: "คิริคิซันที่อยู่บนจุดสูงสุดของกองกำลังขนาดใหญ่เพียงตัวเดียวเท่านั้นที่จะสามารถวิวัฒนาการเป็นโดโดเกซันได้",
id: "Hanya Bisharp yang berada pada posisi teratas di dalam pasukannya yang dapat berevolusi menjadi Kingambit."
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "とうそつりょく",
'zh-tw': "統率力",
th: "ความเป็นผู้นำ",
id: "Kepemimpinan"
},
effect: {
ja: "このポケモンがいるかぎり、自分のたねポケモンが使うワザの、相手のバトルポケモンへのダメージは「+30」される。",
'zh-tw': "只要這隻寶可夢在場上,自己的【基礎】寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+30」點。",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่ แดเมจของท่าต่อสู้ที่โปเกมอน[พื้นฐาน]ฝ่ายเรา ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+30]",
id: "Selama Pokémon ini ada di Arena, kerusakan akibat serangan yang digunakan oleh Pokémon Basic sendiri kepada Pokémon Bertarung lawan bertambah sejumlah 30."
}
}],
attacks: [{
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "ぶったぎり",
'zh-tw': "猛斬",
th: "ฟันหนักหน่วง",
id: "Sabetan Membelah"
},
damage: 160
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card