1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 12:41:59 +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

63
data-asia/SV/SV5a/023.ts Normal file
View File

@@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ケロマツ",
'zh-tw': "呱呱泡蛙",
th: "เคโรมัตซึ"
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
dexId: [656],
hp: 60,
types: ["Water"],
description: {
ja: "胸と 背中から 泡を 出す。 弾力のある 泡で 攻撃を 受け止めて ダメージを 減らす。",
'zh-tw': "從胸口和背上做出泡泡。 以富有彈力的泡泡抵擋攻擊, 減少所受的傷害。",
th: "จะปล่อยฟองจากหน้าอกและหลัง และใช้ฟองที่มีความยืดหยุ่นสกัดกั้นการโจมตีเพื่อลดความเสียหาย"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "むれる",
'zh-tw': "群聚",
th: "ชุมนุม"
},
effect: {
ja: "自分の山札から「ケロマツ」を2枚まで選び、ベンチに出す。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇最多2張「呱呱泡蛙」放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ด [เคโรมัตซึ] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Water"],
name: {
ja: "はねまわる",
'zh-tw': "活蹦亂跳",
th: "สะบัดตัว"
},
damage: 10
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card