mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
23 lines
409 B
TypeScript
23 lines
409 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SC2b"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "洛茲大廈"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "雙方玩家在每個自己的回合時,可使用1次,可從牌庫抽卡直到自己的手牌滿3張為止。"
|
||
},
|
||
|
||
trainerType: "Stadium",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|