mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
373 B
TypeScript
22 lines
373 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SCB"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "大姐姐"
|
|
},
|
|
|
|
illustrator: "kirisAki",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "這張卡可在先攻玩家的最初回合使用。從自己的牌庫抽出2張卡。"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "D"
|
|
}
|
|
|
|
export default card |