1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

55 lines
943 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 "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "仙子伊布"
},
illustrator: "Kuroimori",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "搖曳著觸角跳著輕快 舞蹈的樣子相當優雅, 但招式卻會直搗對手要害。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "奧密迴旋"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則選擇1隻對手的備戰寶可夢將那隻寶可夢與附加的卡全部放回對手的牌庫並重洗。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "魅惑之聲"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 90,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Uncommon"
}
export default card