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

24 lines
867 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 "../SK"
const card: Card = {
set: Set,
name: {
'zh-tw': "神奇糖果",
ja: "ふしぎなアメ"
},
illustrator: "Yoshinobu Saito",
category: "Trainer",
effect: {
'zh-tw': "從自己的手牌選擇1張【2階進化】寶可夢卡放置於自己的場上的可進化成那隻寶可夢的【基礎】寶可夢身上跳過【1階進化】完成進化。無法對自己的最初回合與這個回合剛使出的寶可夢使用。",
ja: "自分の手札から2進化ポケモンを1枚選び、そのポケモンへと進化する自分の場のたねポケモンにのせ、1進化をとばして進化させる。最初の自分の番と、この番出したばかりのポケモンには使えない。"
},
trainerType: "Item",
regulationMark: "D"
}
export default card