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

50 lines
845 B
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 "../S8a"
const card: Card = {
set: Set,
name: {
'zh-tw': "哲爾尼亞斯"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "據說當頭上的角閃耀七色光芒時,就會分享永恆的生命。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "生命之息"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多3張各不同屬性的基本能量卡以任意方式附於自己的寶可夢身上。並且重洗牌庫。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "極光角擊"
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card