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

56 lines
903 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 "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "霜奶仙"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "牠會把自己用鮮奶油裝飾過的樹果送給自己信任的訓練家。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "甜蜜平分"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。雙方玩家各從牌庫抽出1張卡。"
}
}],
attacks: [{
name: {
'zh-tw': "奇跡閃耀"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 60,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card