mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add SV9s (#746)
This commit is contained in:
66
data-asia/SV/SV9s/052.ts
Normal file
66
data-asia/SV/SV9s/052.ts
Normal file
@ -0,0 +1,66 @@
|
||||
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
|
Reference in New Issue
Block a user