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

65
data-asia/SV/SV8s/079.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Sigilyph",
th: "ซิมโบลา"
},
illustrator: "svlt",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
id: "Sigilyph terbang di udara menggunakan kekuatan psikokinesis. Dikenal sebagai dewa pelindung kota zaman purba atau juga utusan dewa.",
th: "บินบนท้องฟ้าด้วยพลังจิต ได้รับการเล่าขานว่าเป็นเทพหรือบริวารของ เทพที่ปกปักรักษาเมืองสมัยโบราณ"
},
stage: "Basic",
attacks: [{
name: {
id: "Double Draw",
th: "ดับเบิลดรอว์"
},
effect: {
id: "Ambil 2 kartu dari atas Deck sendiri.",
th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา"
},
cost: ["Colorless"]
}, {
name: {
id: "Psikokinesis",
th: "จิตตานุภาพ"
},
effect: {
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh.",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม เป็นสภาวะ[ชา]"
},
damage: 60,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card