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

60 lines
1.1 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 "../SCD"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 急凍鳥"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "擁有急凍鳥之名的寶可夢。射出的光束會讓對方的身體像結凍似地失去自由。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "冷酷充能"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。從自己的手牌選擇最多2張【超】能量卡附於這隻寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "精神鐳射"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的所有【超】能量丟棄對手的1隻寶可夢受到120點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card