1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

48 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 "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Stunfisk",
th: "มักเกียว"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 110,
types: ["Lightning"],
description: {
id: "Stunfisk tinggal di dataran lumpur. Berkat bakteri yang hidup di lumpur, organ untuk membuat listriknya jadi berkembang.",
th: "อาศัยอยู่บริเวณหาดโคลน เชื้อโรคที่อยู่ในโคลนทำให้ร่างกายพัฒนา อวัยวะสำหรับสร้างกระแสไฟฟ้าขึ้นมา"
},
stage: "Basic",
attacks: [{
name: {
id: "Pijar Pelumpuh",
th: "เปรี๊ยะปวดชา"
},
effect: {
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh. Tambah lagi, pilih 1 Energi yang dikenakan pada Pokémon tersebut, lalu buang ke Trash.",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม เป็นสภาวะ[ชา] นอกจากนั้น เลือกพลังงานที่ติดอยู่กับโปเกมอนนั้น 1 ลูก ทิ้งที่ ตำแหน่งทิ้งการ์ด"
},
damage: 50,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card