mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
24 lines
450 B
TypeScript
24 lines
450 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SK"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "可爾妮的氣勢",
|
|
ja: "コルニの気合い"
|
|
},
|
|
|
|
illustrator: "kirisAki",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "從牌庫抽卡直到自己的手牌滿6張為止。",
|
|
ja: "自分の手札が6枚になるように、山札を引く。"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "E"
|
|
}
|
|
|
|
export default card |