mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
68
data-asia/SV/SV2D/029.ts
Normal file
68
data-asia/SV/SV2D/029.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "スナバァ",
|
||||
'zh-tw': "沙丘娃",
|
||||
th: "ซึนาบา",
|
||||
id: "Sandygast"
|
||||
},
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [769],
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
ja: "スコップを なくすと 木の枝などを 代わりに 挿し 新たな スコップが 見つかるまで 気を 紛らわす。",
|
||||
'zh-tw': "萬一鏟子弄丟了,就會用樹枝等東西插著代替,好讓牠在 找到新鏟子前能分散注意力。",
|
||||
th: "หากทำพลั่วหาย จะปลอบใจตัวเองโดยหาสิ่งอื่น เช่น กิ่งไม้ มาปักแทนจนกว่าจะหาพลั่วใหม่ได้",
|
||||
id: "Jika Sandygast menghilangkan sekopnya, ia menancapkan ranting pohon atau benda lainnya sebagai pengganti hingga menemukan sekop yang baru."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "つぶやく",
|
||||
'zh-tw': "囈語",
|
||||
th: "งึมงำ",
|
||||
id: "Bergumam"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "マッドショット",
|
||||
'zh-tw': "泥巴射擊",
|
||||
th: "มัดช็อต",
|
||||
id: "Mud Shot"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user