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