mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
26 lines
518 B
TypeScript
26 lines
518 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVHK"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "妮莫",
|
|
th: "เนโม",
|
|
id: "Nemola"
|
|
},
|
|
|
|
illustrator: "Sanosuke Sakuma",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "從自己的牌庫抽出3張卡。",
|
|
th: "จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา",
|
|
id: "Ambil 3 kartu dari atas Deck sendiri."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |