mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
309 B
TypeScript
22 lines
309 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVLS"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "ネモ"
|
|
},
|
|
|
|
illustrator: "Sanosuke Sakuma",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "自分の山札を3枚引く。"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
rarity: "None"
|
|
}
|
|
|
|
export default card |