init: add workspace files

This commit is contained in:
2026-05-26 16:41:20 +08:00
commit f4f2393f72
1041 changed files with 67405 additions and 0 deletions

13
world/obj/sp/dati.js Normal file
View File

@@ -0,0 +1,13 @@
this.inherits(OBJ);
this.set({
unit: "张",
name: "答题卡",
desc: "一封密函,火漆封口,似乎写的什么秘密的军事机密",
value: 10000,
grade: 3
});
this.on_open = function (me) {
var task = TASK.GET("xiangyang");
if (!task) return me.notify_fail("你不知道里面写的什么东西。");
me.notify_fail("你打开密函仔细读了一下,发现你不认识蒙古字,还是交给襄阳城的郭大侠看看吧。");
}