init: add workspace files
This commit is contained in:
26
world/obj/eq/lv2/lm_shoes.js
Normal file
26
world/obj/eq/lv2/lm_shoes.js
Normal file
@@ -0,0 +1,26 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
name: "龙纹靴",
|
||||
desc: "鞋面用黑龙筋编织出防滑纹路",
|
||||
unit: "件",
|
||||
grade: 2,
|
||||
eq_type: EQUIP_TYPE.SHOES,
|
||||
hole_count: 1,
|
||||
prop: {
|
||||
fy: 21,
|
||||
int: 10
|
||||
}
|
||||
});
|
||||
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