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

60
data-asia/SV/SV8s/045.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Cryogonal",
th: "ฟรีจิโอ"
},
illustrator: "sui",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
id: "Cryogonal menggunakan rantainya yang terbuat dari es untuk mengikat dan membekukan lawan dengan sekaligus.",
th: "เมื่อใช้โซ่ที่ทำจากน้ำแข็งมัดฝ่ายตรงข้าม จะทำให้ฝ่ายตรงข้ามถูก แช่แข็งทั้งอย่างนั้นในอึดใจเดียว"
},
stage: "Basic",
attacks: [{
name: {
id: "Call Sign",
th: "คอลไซน์"
},
effect: {
id: "Pilih 1 lembar Pokémon dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.",
th: "เลือกการ์ดโปเกมอน 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด"
},
cost: ["Water"]
}, {
name: {
id: "Sinar Pembeku",
th: "ลำแสงเยือกแข็ง"
},
effect: {
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh.",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม เป็นสภาวะ[ชา]"
},
damage: 30,
cost: ["Water"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card