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

55 lines
870 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: ["Darkness"],
description: {
'zh-tw': "據說當生命走到盡頭時,會吸光所有生物的生命,回到繭的狀態。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "破壞呐喊"
},
effect: {
'zh-tw': "選擇最多3張對手的場上寶可夢身上附加的特殊能量卡將其丟棄。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "黑暗羽毛"
},
damage: 100,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card