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

65 lines
1.7 KiB
TypeScript
Raw Permalink 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "グレイシア",
'zh-tw': "冰伊布",
th: "กราเซีย"
},
illustrator: "rika",
rarity: "Uncommon",
category: "Pokemon",
dexId: [471],
hp: 120,
types: ["Water"],
description: {
ja: "体温を 下げることで 全身の 体毛を 凍らせて 鋭く 尖った 針のようにして 飛ばす。",
'zh-tw': "透過使體溫下降, 讓全身的體毛結凍, 並像尖銳的針一般發射。",
th: "ทำให้ตัวเย็นลงเพื่อให้ขนแข็งคมราวเข็มแล้วสะบัดออกไป"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "しみいるれいき",
'zh-tw': "滲透寒氣",
th: "ไอเย็นซึมลึก"
},
damage: 30,
effect: {
ja: "次の相手の番の終わりに、このワザを受けたポケモンにダメカンを9個のせる。",
'zh-tw': "在下個對手的回合結束時在受到這個招式的寶可夢身上放置9個傷害指示物。",
th: "เมื่อจบเทิร์นถัดไปของฝ่ายตรงข้าม วางตัวนับแดเมจ 9 ตัวบนโปเกมอนที่ได้รับท่าต่อสู้นี้"
}
}, {
cost: ["Water", "Colorless"],
name: {
ja: "つららミサイル",
'zh-tw': "冰柱飛彈",
th: "มิสไซล์แท่งน้ำแข็ง"
},
damage: 70
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card