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

72 lines
2.4 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "グレイシアex",
id: "Glaceon ex",
th: "กราเซียex",
'zh-tw': "冰伊布ex",
'zh-cn': "冰伊布ex"
},
illustrator: "aky CG Works",
rarity: "Double rare",
category: "Pokemon",
hp: 270,
types: ["Water"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "フロストバレット",
id: "Frost Bullet",
th: "ฟรอสต์บูลเล็ต",
'zh-tw': "冰霜子彈",
'zh-cn': "冰霜子彈"
},
damage: 110,
effect: {
ja: "相手のベンチポケモン1匹にも、30ダメージ。ベンチは弱点・抵抗力を計算しない。",
id: "Serangan ini juga memberikan kerusakan sejumlah 30 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]",
th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 30 ด้วย {โปเกมอน บนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
'zh-tw': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]",
'zh-cn': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]"
}
}, {
cost: ["Grass", "Water", "Darkness"],
name: {
ja: "ユークレース",
id: "Euclase",
th: "ยูเคลส",
'zh-tw': "藍柱石",
'zh-cn': "藍柱石"
},
effect: {
ja: "ダメカンが6個のっている相手のポケモンを1匹選び、きぜつさせる。",
id: "Pilih 1 Pokémon lawan yang memiliki Token Kerusakan sejumlah 6, Pokémon tersebut KO.",
th: "เลือกโปเกมอนฝ่ายตรงข้าม 1 ตัวที่มีตัวนับแดเมจวางอยู่ 6 ตัว ทำให้[หมดสภาพ]",
'zh-tw': "選擇1隻對手的身上放置有6個傷害指示物的寶可夢將其【昏厥】。",
'zh-cn': "選擇1隻對手的身上放置有6個傷害指示物的寶可夢將其【昏厥】。"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card