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

60 lines
1.8 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 "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Maushold",
th: "อิกคาเนซูมิ"
},
illustrator: "DOM",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
description: {
id: "Dua ekor Maushold besar bertarung sambil melindungi anak-anak mereka. Seluruh Pokémon ini ikut bertarung menghadapi lawan yang kuat.",
th: "ตัวใหญ่ 2 ตัวจะคอยปกป้องพวกตัวเล็กพลางต่อสู้ไปด้วย จะเผชิญหน้า กับคู่ต่อสู้ที่แข็งแกร่งด้วยกันทุกตัว"
},
stage: "Stage1",
attacks: [{
name: {
id: "Family March",
th: "แฟมิลีมาร์ช"
},
effect: {
id: "Pilih paling banyak 2 lembar Maushold (termasuk Pokémon {ex}) dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck.",
th: "เลือกการ์ด [อิกคาเนซูมิ (รวม [โปเกมอน【ex】])] ได้สูงสุด 2 ใบจากสำรับ การ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
},
cost: ["Colorless"]
}, {
name: {
id: "Gigi Beruntun",
th: "ฟันหน้าต่อเนื่อง"
},
effect: {
id: "Lempar koin 4 kali. Serangan ini memberikan kerusakan sejumlah 30 untuk tiap lemparan dengan hasil sisi depan.",
th: "ทอยเหรียญ 4 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x30"
},
damage: "30×",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card