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

55 lines
1.5 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 "../S10a"
const card: Card = {
set: Set,
name: {
th: "มายูลด์",
'zh-tw': "盾甲繭"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
th: "มันจะไม่มีวันลืมการโจมตีที่เข้ามาในขณะที่กำลังเก็บตัวอยู่ในรังไหมเลย แม้จะวิวัฒนาการไปแล้วก็ตาม และจะตามล้างแค้นให้จงได้",
'zh-tw': "就算進化了也不會忘記待在繭中時受到的攻擊。 一定會設法進行報復。"
},
stage: "Stage1",
attacks: [{
name: {
th: "แข็งขึ้น",
'zh-tw': "變硬"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้ที่น้อยกว่าหรือเท่ากับ [60]",
'zh-tw': "在下個對手的回合這隻寶可夢不會受到「60」以下的招式的傷害。"
},
cost: ["Grass"]
}, {
name: {
th: "กลิ้งโจมตี",
'zh-tw': "滾動衝撞"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card