1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

60 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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