1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

65 lines
1.5 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ニョロモ",
'zh-tw': "蚊香蝌蚪",
th: "เนียวโรโมะ"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Kedamahadaitai Yawarakai",
dexId: [60],
hp: 60,
types: ["Water"],
description: {
ja: "まだ 脚が 生えた ばかりで うまく 歩けない。 水の中を 泳いでる ほうが 好きなようだ。",
'zh-tw': "由於腳才剛長出來, 因此還不太擅長走路。 似乎更喜歡在水中游泳。",
th: "ขาพึ่งงอกออกมาไม่นาน จึงยังเดินได้ไม่คล่อง ดูเหมือนจะชอบว่ายไปมาในน้ำมากกว่า"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "ふむ",
'zh-tw': "踩",
th: "เหยียบ"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "しっぽビンタ",
'zh-tw': "擺尾拍打",
th: "ตบด้วยหาง"
},
damage: "20×",
effect: {
ja: "コインを2回投げ、オモテの数×20ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×20點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card