1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

48 lines
1.7 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: "Komala"
},
illustrator: "Natsumi Yoshida",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
description: {
th: "หลับตลอดชีวิต อาหารของเน็คโคอาลาคือใบไม้ที่มีพิษร้ายแรง ซึ่งมี เพียงตัวมันเองที่สามารถสลายพิษนั้นได้",
id: "Pokémon ini menghabiskan hidupnya dengan tidur. Makanannya adalah daun beracun mematikan yang racunnya hanya dapat diuraikan oleh Komala."
},
stage: "Basic",
attacks: [{
name: {
th: "กู้ดไนท์น็อก",
id: "Ketukan Selamat Tidur"
},
effect: {
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย แต่ละตัวเป็นสภาวะ[หลับ] เทิร์น ถัดไปของฝ่ายเรา แดเมจของท่าต่อสู้ที่โปเกมอนนี้ ใช้ทำกับโปเกมอนบน ตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+100]",
id: "Ubah kondisi Pokémon Bertarung kedua pemain masing-masing menjadi Tidur. Pada giliran sendiri berikutnya, kerusakan akibat serangan yang digunakan oleh Pokémon ini kepada Pokémon Bertarung lawan bertambah sejumlah 100."
},
damage: 30,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "I"
}
export default card