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

67 lines
1.9 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: "Noivern"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 110,
types: ["Colorless"],
description: {
th: "สามารถปล่อยคลื่นเสียงความถี่สูงที่ทำให้หินขนาดมหึมาแตกเป็นผุยผง ได้ เป็นโปเกมอนที่มีนิสัยโหดร้าย",
id: "Noivern mengeluarkan gelombang ultrasonik yang dapat menghancurkan batu raksasa hingga berkeping-keping. Pokémon yang bersifat kejam."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
th: "จูนนิงเอคโค",
id: "Tuning Echo"
},
effect: {
th: "ถ้าจำนวนการ์ดบนมือฝ่ายเราเท่ากับจำนวนการ์ดบนมือฝ่ายตรงข้าม พลังงาน สำหรับใช้ [แพนิกฮาวล์] ของโปเกมอนนี้ ทั้งหมดจะหายไป",
id: "Jika jumlah Kartu Pegangan sendiri dan jumlah Kartu Pegangan lawan sama, Pokémon ini menjadi tidak membutuhkan Energi untuk menggunakan Panic Howl."
}
}],
attacks: [{
name: {
th: "แพนิกฮาวล์",
id: "Panic Howl"
},
effect: {
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing."
},
damage: 110,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "I"
}
export default card