mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
22 lines
427 B
TypeScript
22 lines
427 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV-P"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "蕾荷"
|
||
},
|
||
|
||
illustrator: "hncl",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "查看自己的牌庫上方5張卡,從其中選擇任意數量的卡,將其丟棄。將剩餘卡以任意順序排列,放回牌庫上方。"
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |