1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

66
data-asia/SV/SVDs/068.ts Normal file
View File

@ -0,0 +1,66 @@
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