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

49 lines
816 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 "../S6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "仙子伊布VMAX"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
hp: 310,
types: ["Psychic"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "貴重之觸"
},
effect: {
'zh-tw': "從自己的手牌選擇1張能量卡附於自己的備戰寶可夢身上。然後將那隻寶可夢恢復「120」HP。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "極巨和諧"
},
effect: {
'zh-tw': "增加自己的備戰寶可夢的屬性種類的數量×30點傷害。"
},
damage: "70+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card