1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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

62
data-asia/SV/SV8s/083.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Meowstic",
th: "เนียโอนิกซ์"
},
illustrator: "Yoriyuki Ikegami",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
id: "Jika Meowstic terus mengeluarkan kekuatan psikokinesisnya yang kuat, fisiknya juga akan mengalami kerusakan.",
th: "เมื่อเนียโอนิกซ์ปล่อยพลังจิตอันทรงพลังออกมาเรื่อย ๆ กายเนื้อของ มันก็จะได้รับความเสียหายไปด้วยเช่นกัน"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Ekor Mengundang",
th: "หางเชื้อเชิญ"
},
effect: {
id: "Dapat digunakan 1 kali pada giliran sendiri jika membuang 1 lembar Mainan Santai dari Kartu Pegangan sendiri ke Trash. Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung.",
th: "ในเทิร์นฝ่ายเรา ถ้าทิ้งการ์ด [ไม้หยอกเรื่อยเฉื่อย] 1 ใบจากบนมือฝ่ายเรา ที่ตำแหน่งทิ้งการ์ด ใช้ได้ 1 ครั้ง เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้"
}
}],
attacks: [{
name: {
id: "Psyshot",
th: "ไซโคช็อต"
},
damage: 80,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card