mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
406 B
TypeScript
22 lines
406 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVLS"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "パーフェクトミキサー"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "自分の山札から好きなカードを5枚まで選び、トラッシュする。そして山札を切る。"
|
|
},
|
|
|
|
trainerType: "Item",
|
|
rarity: "None"
|
|
}
|
|
|
|
export default card |