init: add workspace files
This commit is contained in:
27
world/obj/eq/lv2/lm_pifeng.js
Normal file
27
world/obj/eq/lv2/lm_pifeng.js
Normal file
@@ -0,0 +1,27 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
name: "龙纹披风",
|
||||
desc: "以黑龙皮膜制成,边缘缀着七枚龙鳞甲片,展开时如黑龙展翅。",
|
||||
unit: "件",
|
||||
grade: 2,
|
||||
eq_type: EQUIP_TYPE.CAPE,
|
||||
value: 20000,
|
||||
hole_count: 1,
|
||||
prop: {
|
||||
limit_mp: 500,
|
||||
dazuo_per: 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