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

46 lines
752 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮寶寶"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
description: {
'zh-tw': "有著如同星星一般的輪廓。因為這樣的外型,人們相信 牠是乘著流星而來的。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "亮亮祈禱"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張基本能量卡在給對手看過後加入手牌。並且重洗牌庫。"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "G"
}
export default card