mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-03 04:19:54 +00:00
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV9s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "ซิมโบลา <ของ N>",
|
||
id: "Sigilyph <N>"
|
||
},
|
||
|
||
illustrator: "Shiburingaru",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
th: "เมื่อทำการสำรวจทะเลทรายที่ซิมโบลาบินผ่าน ก็พบร่องรอยที่ สันนิษฐานว่าเป็นเมืองโบราณอยู่ใต้ทะเลทราย",
|
||
id: "Ketika dilakukan investigasi di bawah padang pasir tempat Sigilyph terbang, ditemukan peninggalan yang diduga merupakan kota purba."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "บอลโทรจิต",
|
||
id: "Bola Psikis"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Psychic"]
|
||
}, {
|
||
name: {
|
||
th: "วิกทอรีซิมโบล",
|
||
id: "Victory Symbol"
|
||
},
|
||
|
||
effect: {
|
||
th: "เมื่อใช้ท่าต่อสู้นี้แล้ว ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายเราเป็น 1 ใบ การแบตเทิลนี้ฝ่ายเราชนะ",
|
||
id: "Jika sisa Kartu Point sendiri adalah 1 lembar saat menggunakan serangan ini, pemain dinyatakan menang pada permainan ini."
|
||
},
|
||
|
||
cost: ["Psychic", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "I"
|
||
}
|
||
|
||
export default card |