diff --git a/sql.go b/sql.go index d48dfc8..06b8fcf 100644 --- a/sql.go +++ b/sql.go @@ -1320,7 +1320,7 @@ INSERT INTO obj_item (obj_id, intl_id, name, weight) VALUES (412, 's14', '📗Rare scroll of Peace', 1), (413, 's15', '📘Rare scroll of Rage', 1), (414, 's16', '📘Rare scroll of Peace', 1), -(415, 's51', '✒️Sof Engraving', 1), +(415, 's51', '✒️Scroll of Engraving', 1), (416, 'tch', 'Torch', -1), (417, 'td1', 'Colorless shard', 50), (418, 'w01', 'Wooden Sword', -1), @@ -1380,6 +1380,9 @@ INSERT INTO obj_item (obj_id, intl_id, name, weight) VALUES (472, 'w99', 'Maiming Bulawa', 0); `) failOnError(err, "initDB : populate table obj_item #2") + _, _ = addObjItem(`🖋Scroll of Engraving`, `s50`, objSubTypeItemMisc, 1) + _, _ = addObjItem(`📙Scroll of Peace`, `s08`, objSubTypeItemMisc, 1) + _, _ = addObjItem(`📙Scroll of Rage`, `s07`, objSubTypeItemMisc, 1) log.Println("initDB : obj_item populated ...") log.Println("initDB : Database set up")