init: add workspace files
This commit is contained in:
20
world/obj/sp/tool/sm.js
Normal file
20
world/obj/sp/tool/sm.js
Normal file
@@ -0,0 +1,20 @@
|
||||
this.inherits(OBJ);
|
||||
this.set({
|
||||
unit: "个",
|
||||
name: "师门令牌",
|
||||
desc: "可以用来完成师门交给你的任务,限制30难度以前",
|
||||
grade: 1,
|
||||
value: 0
|
||||
});
|
||||
|
||||
this.on_create = function (path, par) {
|
||||
if (!par) {
|
||||
this.path = path + "#1";
|
||||
return;
|
||||
}
|
||||
par = par.substr(1);
|
||||
var lv = parseInt(par);
|
||||
if (!(lv > 0 && lv < 6)) return;
|
||||
this.grade = lv;
|
||||
this.desc = "可以用来完成师门交给你的任务,限制" + (10 + this.grade * 20) + "难度以前";
|
||||
}
|
||||
Reference in New Issue
Block a user