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:
74
data-asia/SV/SV2P/030.ts
Normal file
74
data-asia/SV/SV2P/030.ts
Normal file
@@ -0,0 +1,74 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ヤドキングex",
|
||||
'zh-tw': "呆呆王ex",
|
||||
th: "ยาโดคิงex",
|
||||
id: "Slowking ex"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 270,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
ja: "うんちく",
|
||||
'zh-tw': "博學",
|
||||
th: "ความรู้สั่งสม",
|
||||
id: "Pengetahuan Mendalam"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
ja: "相手のバトルポケモンをこんらんにする。",
|
||||
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
|
||||
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]",
|
||||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
name: {
|
||||
ja: "ウィズダムヘッド",
|
||||
'zh-tw': "才智頭擊",
|
||||
th: "วิสดอมเฮด",
|
||||
id: "Wisdom Headbutt"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
effect: {
|
||||
ja: "のぞむなら、自分の山札から好きなカードを2枚まで選び、手札に加える。そして山札を切る。",
|
||||
'zh-tw': "若希望,從自己的牌庫任意選擇最多2張卡加入手牌。並且重洗牌庫。",
|
||||
th: "หากต้องการ เลือกการ์ดที่ชอบได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด",
|
||||
id: "Pemain dapat memilih paling banyak 2 kartu sesukanya dari Deck sendiri, lalu menambahkannya ke Kartu Pegangan. Kemudian, kocok Deck."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user