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

55 lines
984 B
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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 魔靈珊瑚"
},
illustrator: "sui",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
description: {
'zh-tw': "一定要小心牠那包覆著靈魂的靈體。如果觸摸到,就會像石頭一樣動彈不得。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "強迫再生"
},
effect: {
'zh-tw': "從對手的棄牌區選擇1張【基礎】寶可夢的「寶可夢【V】」卡放置於對手的備戰區。然後在身上放置傷害指示物直到那隻寶可夢的剩餘HP變為「30」為止。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "陰森射擊"
},
damage: 80,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card