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,14 @@
this.inherits(EQUIPMENT);
this.set({
unit: "副",
name: "崔莺莺的手镯",
desc: "一副翡翠做的手镯,可能是崔莺莺的情郎送给她的定情信物",
value: 10000,
eq_type: EQUIP_TYPE.WRIST,
grade: 2
});
this.prop = {
gjsd: 200,
int: 10,
per:2
};

View File

@@ -0,0 +1,14 @@
this.inherits(EQUIPMENT);
this.set({
name: "黑虎单刀",
desc: "一把短柄的砍刀,看上去锋利异常",
unit: "把",
grade: 1,
eq_type: EQUIP_TYPE.WEAPON,
weapon_type: WEAPON_TYPE.BLADE,
value: 20000,
prop: {
gj: 20,
str: 3
}
});

View File

@@ -0,0 +1,14 @@
this.inherits(EQUIPMENT);
this.set({
name: "拂尘",
desc: "这是一柄拂尘,整体素白",
unit: "柄",
grade: 1,
eq_type: EQUIP_TYPE.WEAPON,
weapon_type: WEAPON_TYPE.WHIP,
value: 10000,
prop: {
gj: 8,
mz: 2
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
unit: "枚",
name: "崔员外的戒指",
desc: "一枚金子打造的戒指,有点粗",
value: 10000,
eq_type: EQUIP_TYPE.RING,
grade: 1
});
this.prop = {
gj: 2,
mz: 2
};

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "官服",
desc: "一件朝廷命官穿着的官服,上面用金丝线绣着一些花纹。",
unit: "件",
grade: 1,
eq_type: EQUIP_TYPE.CLOTH,
value: 10000,
prop: {
fy: 15,
max_hp: 20
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "金蛇锥",
desc: "金蛇郎君的独门暗器,形状奇特",
unit: "个",
grade: 1,
eq_type: EQUIP_TYPE.THROWING,
value: 20000,
prop: {
gj: 8,
mz:5
}
});

View File

@@ -0,0 +1,14 @@
this.inherits(EQUIPMENT);
this.set({
unit: "把",
name: "军刀",
desc: "一把精钢打造的长刀",
value: 12500,
grade:1,
eq_type: EQUIP_TYPE.WEAPON,
weapon_type : WEAPON_TYPE.BLADE
});
this.prop = {
gj:10,
str:2
};

13
world/obj/eq/lv1/junfu.js Normal file
View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "军服",
desc: "官兵穿的衣服,虽然简陋但是实用",
unit: "件",
grade: 1,
eq_type: EQUIP_TYPE.CLOTH,
value: 10000,
prop: {
fy: 10,
max_hp: 10
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "流氓衣",
desc: "这是一件劲装,看上去叼叼的,虽然有些非主流",
unit: "件",
grade: 1,
eq_type: EQUIP_TYPE.CLOTH,
value: 10000,
prop: {
fy: 8,
max_hp: 10
}
});

View File

@@ -0,0 +1,14 @@
this.inherits(EQUIPMENT);
this.set({
unit: "根",
name: "流氓闷棍",
desc: "这是城外流氓打架斗殴的标配",
value: 2500,
grade: 1,
eq_type: EQUIP_TYPE.WEAPON,
weapon_type: WEAPON_TYPE.CLUB
});
this.prop = {
gj: 10,
zj: 7
};

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "流氓巾",
desc: "这是一条黑色的带子,随意束住头发,看上去有几分潇洒",
unit: "件",
grade: 1,
eq_type: EQUIP_TYPE.HEAD,
value: 10000,
prop: {
fy:2,
max_hp:10
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "流氓短剑",
desc: "这是城外流氓们配备的防身武器,一把短剑,可以当匕首用",
unit: "把",
grade: 1,
eq_type: EQUIP_TYPE.WEAPON,
weapon_type: WEAPON_TYPE.SWORD,
prop: {
gj: 10,
dex: 2
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "流氓鞋",
desc: "这是一件褐色的皮靴,看上去叼叼的,虽然有些非主流",
unit: "件",
grade: 1,
eq_type: EQUIP_TYPE.SHOES,
value: 10000,
prop: {
fy: 5,
dex: 1
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "流氓护腕",
desc: "这是一条黑色的不知道什么动物的皮制成的护腕,已经被磨的铮亮",
unit: "件",
grade: 1,
eq_type: EQUIP_TYPE.WRIST,
value: 10000,
prop: {
dex: 1,
gjsd: 100
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "员外披肩",
desc: "这是扬州城最近有钱人流行穿的款式,上好的杭州白编绫,用金丝秀满了钱币",
unit: "件",
grade: 1,
eq_type: EQUIP_TYPE.CAPE,
value: 20000,
prop: {
fy: 5,
max_hp:30
}
});

View File

@@ -0,0 +1,14 @@
this.inherits(EQUIPMENT);
this.set({
name: "千斤拳",
desc: "据说有千斤重,拎上去确实有几分重量,形状奇特,边缘高低不平的裂齿",
unit: "双",
grade: 1,
eq_type: EQUIP_TYPE.WEAPON,
weapon_type: WEAPON_TYPE.NONE,
value: 20000,
prop: {
gj: 15,
str: 3
}
});

View File

@@ -0,0 +1,14 @@
this.inherits(EQUIPMENT);
this.set({
unit: "根",
name: "齐眉棍",
desc: "此棍竖直与人眉齐高,是军中常用棍",
value: 2500,
grade: 1,
eq_type: EQUIP_TYPE.WEAPON,
weapon_type: WEAPON_TYPE.CLUB
});
this.prop = {
gj: 12,
str: 4
};

View File

@@ -0,0 +1,11 @@
this.inherits(EQUIPMENT);
this.set({
name: "青木令",
desc: "天地会青木堂的堂主令牌",
unit: "块",
grade: 1,
eq_type: EQUIP_TYPE.JEWELS,
prop: {
limit_mp: 100
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "武当道袍",
desc:"这是武当派正式弟子的标准装束。",
unit: "件",
grade: 1,
eq_type: EQUIP_TYPE.CLOTH,
value: 10000,
prop: {
fy: 10,
con:2
}
});

View File

@@ -0,0 +1,14 @@
this.inherits(EQUIPMENT);
this.set({
name: "武当长剑",
desc: "武当正式弟子的配剑,剑身长而窄,灵动飘逸",
unit: "把",
grade: 1,
eq_type: EQUIP_TYPE.WEAPON,
weapon_type: WEAPON_TYPE.SWORD,
value: 20000,
prop: {
gj: 15,
int: 3
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
unit: "条",
name: "韦春芳的项链",
desc: "估计是哪个恩客送给韦春芳的",
value: 10000,
eq_type: EQUIP_TYPE.NECKLACE,
grade: 1
});
this.prop = {
con: 3,
per: 3
};

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "侠客衫",
desc: "江湖中很流行的侠客侠女套装,做工精美,虽不华丽但也光鲜",
unit: "件",
grade: 1,
eq_type: EQUIP_TYPE.CLOTH,
value: 100000,
prop: {
fy: 10,
con: 2
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "侠客冠",
desc: "江湖中很流行的侠客侠女套装,做工精美,这是一顶冠带",
unit: "顶",
grade: 1,
eq_type: EQUIP_TYPE.HEAD,
value: 100000,
prop: {
fy: 6,
int: 2
}
});

View File

@@ -0,0 +1,13 @@
this.inherits(EQUIPMENT);
this.set({
name: "侠客靴",
desc: "江湖中很流行的侠客侠女套装,这是其中一双靴子,可以看出做工很讲究,好看又实用。",
unit: "双",
grade: 1,
eq_type: EQUIP_TYPE.SHOES,
value: 100000,
prop: {
fy: 5,
dex: 2
}
});