mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-26 01:49:54 +00:00
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV9s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "เนนดอลล์ <ของไดโกะ>",
|
||
id: "Claydol <Steven>"
|
||
},
|
||
|
||
illustrator: "nagimiso",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
th: "ดูเหมือนว่าเกิดมาจากตุ๊กตาดินเหนียวของมนุษย์โบราณ ใช้พลังจิต ลอยตัวและเคลื่อนที่ไปในอากาศ",
|
||
id: "Kabarnya Claydol terlahir dari boneka lumpur buatan manusia purba. Pokémon ini menggunakan kekuatan psikokinesis untuk melayang dan bergerak di udara."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "แสงแห่งลางร้าย",
|
||
id: "Cahaya Mengerikan"
|
||
},
|
||
|
||
effect: {
|
||
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]",
|
||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing."
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Psychic"]
|
||
}, {
|
||
name: {
|
||
th: "เคลย์บลาสต์",
|
||
id: "Clay Blast"
|
||
},
|
||
|
||
effect: {
|
||
th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด",
|
||
id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash."
|
||
},
|
||
|
||
damage: 220,
|
||
cost: ["Psychic", "Psychic", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "I"
|
||
}
|
||
|
||
export default card |