init: add workspace files
This commit is contained in:
26
world/obj/eq/lv2/lm_pei.js
Normal file
26
world/obj/eq/lv2/lm_pei.js
Normal file
@@ -0,0 +1,26 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
name: "龙纹玉佩",
|
||||
desc: "墨玉质地,表面刻着盘旋的五爪金龙,龙鳞纹路清晰可辨。",
|
||||
unit: "块",
|
||||
grade: 2,
|
||||
eq_type: EQUIP_TYPE.JEWELS,
|
||||
hole_count: 1,
|
||||
prop: {
|
||||
study_per: 10,
|
||||
int: 12
|
||||
}
|
||||
});
|
||||
this.group_name = "lm2";
|
||||
this.group_prop = function (count) {
|
||||
if (count == 3) {
|
||||
return {
|
||||
int: 10
|
||||
};
|
||||
} else if (count == 5) {
|
||||
return {
|
||||
lianxi_per: 15,
|
||||
dazuo_per: 15
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user