1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 04:19:54 +00:00

55 lines
1.6 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 "../SV9s"
const card: Card = {
set: Set,
name: {
th: "มารุมายน์ <ของนันจาโม>",
id: "Electrode <Mistika>"
},
illustrator: "GOTO minori",
category: "Pokemon",
hp: 100,
types: ["Lightning"],
description: {
th: "ยิ่งสะสมพลังงานไฟฟ้ามากเท่าไหร่ยิ่งเคลื่อนไหวได้เร็ว แต่ก็จะ ระเบิดง่ายขึ้นด้วย",
id: "Makin banyak energi listrik yang disimpan, Electrode dapat bergerak dengan kecepatan tinggi. Namun, Pokémon ini juga menjadi lebih mudah untuk meledak."
},
stage: "Stage1",
attacks: [{
name: {
th: "ระเบิดตึ้กตั้ก",
id: "Bom Dag Dig Dug"
},
effect: {
th: "ทำแดเมจ 100 กับโปเกมอนนี้ ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอน บนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ]",
id: "Pokémon ini menerima kerusakan sejumlah 100. Lempar koin 1 kali. Jika hasilnya sisi depan, Pokémon Bertarung lawan KO."
},
cost: ["Lightning", "Lightning"]
}, {
name: {
th: "ไลท์นิงบอล",
id: "Lightning Ball"
},
damage: 100,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "I"
}
export default card