mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
22 lines
493 B
TypeScript
22 lines
493 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S11"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "幻想門"
|
||
},
|
||
|
||
illustrator: "sadaji",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "這張卡只有在自己的放逐區有7張以上的卡時才可使用。從自己的牌庫選擇最多2張各不同屬性的基本能量卡,以任意方式附於自己的寶可夢身上。並且重洗牌庫。"
|
||
},
|
||
|
||
trainerType: "Item",
|
||
regulationMark: "F"
|
||
}
|
||
|
||
export default card |