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

67 lines
1.7 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 急凍鳥",
ja: "ガラル フリーザー"
},
illustrator: "Shiburingaru",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "擁有急凍鳥之名的寶可夢。射出的光束會讓對方的身體像結凍似地失去自由。",
ja: "凍りついたかのように 体の 自由を 奪う ビームを 撃ちだす フリーザーの 名を もつ ポケモン。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "冷酷充能",
ja: "れいこくチャージ"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。從自己的手牌選擇最多2張【超】能量卡附於這隻寶可夢身上。",
ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。自分の手札からエネルギーを2枚まで選び、このポケモンにつける。"
}
}],
attacks: [{
name: {
'zh-tw': "精神鐳射",
ja: "サイコレーザー"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的所有【超】能量丟棄對手的1隻寶可夢受到120點傷害。[在備戰區不計算弱點・抵抗力。]",
ja: "このポケモンについているエネルギーをすべてトラッシュし、相手のポケモン1匹に、120ダメージ。ベンチは弱点・抵抗力を計算しない。"
},
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2,
regulationMark: "E",
dexId: [144]
}
export default card