1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +00:00

66 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: "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