mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 03:29:51 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
68
data-asia/SV/SV3a/020.ts
Normal file
68
data-asia/SV/SV3a/020.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "コレクレー",
|
||||
'zh-tw': "索財靈",
|
||||
th: "คอลเลคเรย์"
|
||||
},
|
||||
|
||||
illustrator: "Mizue",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [999],
|
||||
hp: 50,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
ja: "およそ1500年前 宝箱の中で 生まれた。 宝を 盗む 不埒者の 生気を 吸い取る。",
|
||||
'zh-tw': "約1500年前出生在寶箱裡。如果有惡棍打算偷走寶藏, 就會被牠吸走精氣。",
|
||||
th: "เกิดในกล่องสมบัติเมื่อราว 1500 ปีก่อน สูบพลังชีวิตของคนร้ายที่มาขโมยสมบัติ"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "なかまをよぶ",
|
||||
'zh-tw': "呼朋引伴",
|
||||
th: "เรียกเพื่อน"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。",
|
||||
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。",
|
||||
th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "どつく",
|
||||
'zh-tw': "推擊",
|
||||
th: "ต่อยตี"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user