mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
61 lines
1.0 KiB
TypeScript
61 lines
1.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Sc1a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "伽勒爾 魔靈珊瑚"
|
||
},
|
||
|
||
illustrator: "Kagemaru Himeno",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
'zh-tw': "靈力增強之後從殼裡被解放出來。用靈體保護著內核中的靈魂。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "滅亡之軀"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "當這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害而【氣絕】時,己方擲1次硬幣。若為正面,則將使用招式的寶可夢【氣絕】。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "窮追不捨"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Psychic", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |