1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

63 lines
1.7 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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