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

43 lines
873 B
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 "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "瑪瑙水母",
th: "เมโนคุราเกะ"
},
illustrator: "SATOSHI NAKAI",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "身體的99%是水分。剩下的1%之中包含了用來製造毒素的器官。",
th: "ร่างกาย 99 เปอร์เซ็นต์เป็นน้ำ อีก 1 เปอร์เซ็นต์ที่เหลือเป็นอวัยวะสร้างสารพิษ"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "重摑",
th: "ตบแรง"
},
damage: 30,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card