mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
22 lines
349 B
TypeScript
22 lines
349 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SCC"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "可爾妮的氣勢"
|
|
},
|
|
|
|
illustrator: "kirisAki",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "從牌庫抽卡直到自己的手牌滿6張為止。"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "E"
|
|
}
|
|
|
|
export default card |