init: add workspace files

This commit is contained in:
2026-05-26 16:41:20 +08:00
commit f4f2393f72
1041 changed files with 67405 additions and 0 deletions

View 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
};
}
}