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

55 lines
921 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 "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "仙子伊布"
},
illustrator: "Mizue",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "伽勒爾地區的童話中有著美麗的仙子伊布擊退了可怕的龍寶可夢的故事。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "延後踢"
},
effect: {
'zh-tw': "若希望選擇1個對手的戰鬥寶可夢身上附加的能量放回對手的手牌。"
},
damage: 30,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "諧和鞭打"
},
effect: {
'zh-tw': "在這個回合若從手牌使出了支援者卡則增加70點傷害。"
},
damage: "70+",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card