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

23 lines
559 B
TypeScript
Raw Permalink 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "神奇糖果"
},
illustrator: "Yoshinobu Saito",
category: "Trainer",
effect: {
'zh-tw': "從自己的手牌選擇1張【2階進化】寶可夢卡放置於自己的場上的可進化成那隻寶可夢的【基礎】寶可夢身上跳過【1階進化】完成進化。無法對自己的最初回合與這個回合剛使出的寶可夢使用。"
},
trainerType: "Item",
regulationMark: "D"
}
export default card