1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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/SV5K/021.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ウミディグダ",
'zh-tw': "海地鼠",
th: "อุมิดิกดา"
},
illustrator: "OKUBO",
rarity: "Common",
category: "Pokemon",
dexId: [960],
hp: 60,
types: ["Water"],
description: {
ja: "20メートル先の ミガルーサが 放つ 匂いも 嗅ぎとって 砂の中に 身を 隠すのだ。",
'zh-tw': "就算身處於20公尺外,牠都能嗅出輕身鱈散發出 的氣味,躲進沙子裡面藏身。",
th: "จะหลบซ่อนตัวในทรายเมื่อได้กลิ่นที่มิกาลูซาปล่อยออกมาแม้จะห่างออกไปกว่า 20 เมตร"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "ほりだしもの",
'zh-tw': "挖到寶",
th: "ของเลหลัง"
},
effect: {
ja: "自分の山札からグッズを1枚選び、相手に見せて、手札に加える。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張物品卡在給對手看過後加入手牌。並且重洗牌庫。",
th: "เลือกการ์ดไอเท็ม 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Water", "Water"],
name: {
ja: "アクアボム",
'zh-tw': "水炸彈",
th: "อควาบอมบ์"
},
damage: 40,
effect: {
ja: "このポケモンにも20ダメージ。",
'zh-tw': "這隻寶可夢也受到20點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card