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:
59
data-asia/SV/SV2a/091.ts
Normal file
59
data-asia/SV/SV2a/091.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "パルシェン",
|
||||
'zh-tw': "刺甲貝",
|
||||
th: "พาร์เชน",
|
||||
id: "Cloyster"
|
||||
},
|
||||
|
||||
illustrator: "Nelnal",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [91],
|
||||
hp: 130,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
ja: "潮の 流れが 激しい 海に 生息している パルシェンの 殻の トゲは 大きく 鋭い。",
|
||||
'zh-tw': "刺甲貝棲息在潮流湍急的海裡, 殼上的刺又大又尖銳。",
|
||||
th: "เปลือกของพาร์เชนที่อาศัยอยู่ในทะเลที่น้ำไหลเชี่ยวจะมีหนามที่ใหญ่และแหลมคม",
|
||||
id: "Cangkang Cloyster yang hidup di laut bergelombang pasang deras berduri besar dan tajam."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Water"],
|
||||
|
||||
name: {
|
||||
ja: "プロテクトチャージ",
|
||||
'zh-tw': "防護充能",
|
||||
th: "โพรเทกชาร์จ",
|
||||
id: "Protect Charge"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
effect: {
|
||||
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-80」される。",
|
||||
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-80」點。",
|
||||
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-80]",
|
||||
id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 80."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user