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

69
data-asia/SV/SV3/069.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "パルデア ドオー",
'zh-tw': "帕底亞 土王",
th: "พัลเดีย โดะโอ"
},
illustrator: "Shin Nagasawa",
rarity: "Uncommon",
category: "Pokemon",
dexId: [980],
hp: 140,
types: ["Darkness"],
description: {
ja: "敵に 襲われると 太い 棘を 胴体から 突き出して 反撃。 身を切る 覚悟の 危険な 技。",
'zh-tw': "一旦遭到敵人襲擊,就會從胴體伸出粗壯的刺來反擊。是需有覺悟承受劇痛的危險招式。",
th: "เมื่อถูกศัตรูโจมตี หนามหนาจะแทงออกมาจากลำตัวเพื่อตอบโต้ เป็นท่าอันตรายที่ต้องยอมรับความเสี่ยง"
},
stage: "Stage1",
attacks: [{
cost: ["Darkness"],
name: {
ja: "とびちるどく",
'zh-tw': "噴濺毒",
th: "พิษกระเด็น"
},
effect: {
ja: "おたがいのバトルポケモンを、それぞれどくにする。",
'zh-tw': "將雙方的戰鬥寶可夢【中毒】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย แต่ละตัวเป็นสภาวะ[พิษ]"
}
}, {
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "ベノムショック",
'zh-tw': "毒液衝擊",
th: "เวนอมช็อก"
},
damage: "80+",
effect: {
ja: "相手のバトルポケモンがどくなら、120ダメージ追加。",
'zh-tw': "若對手的戰鬥寶可夢【中毒】則增加120點傷害。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ] การโจมตีนี้จะเพิ่มแดเมจอีก 120"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card