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

51 lines
1.1 KiB
TypeScript
Raw 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 "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "魅力喵",
th: "เนียรุมา"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
'zh-tw': "魅力喵心情好的時候,會用尾巴展現像韻律體操的彩帶般的美麗動作。",
th: "เนียรุมาที่อารมณ์ดีจะใช้หางเคลื่อนไหวอย่างงดงามเหมือนกับริบบิ้นในกีฬายิมนาสติก"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "喵踢",
th: "ลูกเตะแมวเหมียว"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "利爪劈擊",
th: "กรงเล็บฉีกร่าง"
},
damage: 40,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card