init: add workspace files
This commit is contained in:
28
world/obj/eq/lv2/lm_cloth.js
Normal file
28
world/obj/eq/lv2/lm_cloth.js
Normal file
@@ -0,0 +1,28 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
name: "龙纹服",
|
||||
desc: "以黑龙皮鞣制而成的紧身劲装,表面覆盖着细密的黑色鳞片,阳光下泛着暗紫色光泽。",
|
||||
unit: "件",
|
||||
grade: 2,
|
||||
eq_type: EQUIP_TYPE.CLOTH,
|
||||
hole_count: 1,
|
||||
prop: {
|
||||
fy: 30,
|
||||
int: 10,
|
||||
lianxi_per: 8
|
||||
}
|
||||
});
|
||||
|
||||
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