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

feat: Add SV8s (#675)

This commit is contained in:
2025-02-28 08:44:50 +01:00
committed by GitHub
parent e4099defdb
commit e8e9c23e14
245 changed files with 11903 additions and 0 deletions

61
data-asia/SV/SV8s/085.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Xerneas",
th: "เซอเนียส"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
id: "Dikatakan bahwa Xerneas membagikan kehidupan abadi. Ia tidur selama 1000 tahun dalam wujud pohon, lalu bangkit kembali.",
th: "ว่ากันว่าสามารถแบ่งชีวิตที่เป็นนิรันดร์ให้ผู้อื่นได้ หลังจากหลับอยู่ใน ร่างต้นไม้มานาน 1000 ปี ก็คืนชีพขึ้นใหม่อีกครั้ง"
},
stage: "Basic",
attacks: [{
name: {
id: "Aurora Gain",
th: "ออโรราเกน"
},
effect: {
id: "Pulihkan HP Pokémon ini sejumlah 30.",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}, {
name: {
id: "Giga Impact",
th: "กิก้าอิมแพกต์"
},
effect: {
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้"
},
damage: 130,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card