mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SVDs"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "นัชชี",
|
||
id: "Exeggutor"
|
||
},
|
||
|
||
illustrator: "Yoriyuki Ikegami",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
th: "พลังจิตที่หัวทั้ง 3 หัวรวมใจเป็นหนึ่งเดียวปล่อยออกมานั้นมีพลังแรง วันที่มีเมฆมากจะเคลื่อนไหวช้า",
|
||
id: "Kekuatan psikokinesis yang ditembakkan saat 3 kepala Exeggutor bekerja sama sangat kuat. Gerakannya menjadi lambat saat langit berawan."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "คลื่นสะกดจิต",
|
||
id: "Aura Hipnotis"
|
||
},
|
||
|
||
effect: {
|
||
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]",
|
||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Psychic", "Colorless"]
|
||
}, {
|
||
name: {
|
||
th: "ไซคิกลูป",
|
||
id: "Psychic Loop"
|
||
},
|
||
|
||
effect: {
|
||
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก นำกลับขึ้นมือ",
|
||
id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu kembalikan ke Kartu Pegangan."
|
||
},
|
||
|
||
damage: 160,
|
||
cost: ["Psychic", "Psychic", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |