init: add workspace files
This commit is contained in:
11
world/obj/eq/lv0/cloth.js
Normal file
11
world/obj/eq/lv0/cloth.js
Normal file
@@ -0,0 +1,11 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "件",
|
||||
name: "布衣",
|
||||
desc: "杨记出产的布衣,结实耐用",
|
||||
value: 1000,
|
||||
eq_type: EQUIP_TYPE.CLOTH,
|
||||
});
|
||||
this.prop = {
|
||||
fy: 1
|
||||
};
|
||||
12
world/obj/eq/lv0/dao.js
Normal file
12
world/obj/eq/lv0/dao.js
Normal file
@@ -0,0 +1,12 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "把",
|
||||
name: "钢刀",
|
||||
desc: "一把精钢打造的长刀",
|
||||
value: 2500,
|
||||
eq_type: EQUIP_TYPE.WEAPON,
|
||||
weapon_type : WEAPON_TYPE.BLADE
|
||||
});
|
||||
this.prop = {
|
||||
gj:2
|
||||
};
|
||||
13
world/obj/eq/lv0/duanyi.js
Normal file
13
world/obj/eq/lv0/duanyi.js
Normal 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,
|
||||
str: 1
|
||||
}
|
||||
});
|
||||
11
world/obj/eq/lv0/fei.js
Normal file
11
world/obj/eq/lv0/fei.js
Normal file
@@ -0,0 +1,11 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "把",
|
||||
name: "飞镖",
|
||||
desc: "一把精钢打造的暗器飞镖",
|
||||
value: 2500,
|
||||
eq_type: EQUIP_TYPE.THROWING,
|
||||
});
|
||||
this.prop = {
|
||||
gj: 3
|
||||
};
|
||||
11
world/obj/eq/lv0/huang.js
Normal file
11
world/obj/eq/lv0/huang.js
Normal file
@@ -0,0 +1,11 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "件",
|
||||
name: "皇袍",
|
||||
desc: "这是一黄色的长袍,上面的纹路似一条神龙游弋于天地之间,富丽堂皇之余透露出大气磅礴之势。",
|
||||
value: 100000000,
|
||||
eq_type: EQUIP_TYPE.CLOTH
|
||||
});
|
||||
this.prop = {
|
||||
fy: 99
|
||||
};
|
||||
11
world/obj/eq/lv0/jd_cloth.js
Normal file
11
world/obj/eq/lv0/jd_cloth.js
Normal file
@@ -0,0 +1,11 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "件",
|
||||
name: "家丁服",
|
||||
desc: "崔府家丁的统一制服",
|
||||
value: 5000,
|
||||
eq_type: EQUIP_TYPE.CLOTH,
|
||||
});
|
||||
this.prop = {
|
||||
fy: 5
|
||||
};
|
||||
11
world/obj/eq/lv0/jd_shoes.js
Normal file
11
world/obj/eq/lv0/jd_shoes.js
Normal file
@@ -0,0 +1,11 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "件",
|
||||
name: "家丁鞋",
|
||||
desc: "崔府家丁的统一制服",
|
||||
value: 3000,
|
||||
eq_type: EQUIP_TYPE.SHOES,
|
||||
});
|
||||
this.prop = {
|
||||
fy: 3
|
||||
};
|
||||
10
world/obj/eq/lv0/jian.js
Normal file
10
world/obj/eq/lv0/jian.js
Normal file
@@ -0,0 +1,10 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.unit = "把";
|
||||
this.name = "铁剑";
|
||||
this.desc = "一把生铁打造的剑";
|
||||
this.value = 2000;
|
||||
this.eq_type = EQUIP_TYPE.WEAPON;
|
||||
this.weapon_type = WEAPON_TYPE.SWORD;
|
||||
this.prop = {
|
||||
gj: 1
|
||||
};
|
||||
8
world/obj/eq/lv0/jin.js
Normal file
8
world/obj/eq/lv0/jin.js
Normal file
@@ -0,0 +1,8 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "件",
|
||||
name: "英雄巾",
|
||||
desc: "行走江湖男士标配装备,虽然没什么实际作用",
|
||||
value: 1500,
|
||||
eq_type: EQUIP_TYPE.HEAD,
|
||||
});
|
||||
10
world/obj/eq/lv0/mugun.js
Normal file
10
world/obj/eq/lv0/mugun.js
Normal file
@@ -0,0 +1,10 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.unit = "根";
|
||||
this.name = "木棍";
|
||||
this.desc = "一把木头削成的棍子,看上去唬人,但没什么杀伤力";
|
||||
this.value = 1000;
|
||||
this.eq_type = EQUIP_TYPE.WEAPON;
|
||||
this.weapon_type = WEAPON_TYPE.CLUB;
|
||||
this.prop = {
|
||||
gj: 1
|
||||
};
|
||||
12
world/obj/eq/lv0/niaowo.js
Normal file
12
world/obj/eq/lv0/niaowo.js
Normal file
@@ -0,0 +1,12 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "个",
|
||||
name: "鸟窝",
|
||||
desc: "一个不死木脱落的树皮风干后的剩下的坚丝制成的鸟窝,竟然可以穿到身上,只是有些漏风",
|
||||
value: 1000,
|
||||
eq_type: EQUIP_TYPE.CLOTH,
|
||||
});
|
||||
this.prop = {
|
||||
fy: 550,
|
||||
desc:"这件衣服的材料非常轻盈,却韧性十足,坚逾精钢"
|
||||
};
|
||||
11
world/obj/eq/lv0/ring.js
Normal file
11
world/obj/eq/lv0/ring.js
Normal file
@@ -0,0 +1,11 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "枚",
|
||||
name: "铁戒指",
|
||||
desc: "一枚生铁打造的戒指,带上挺好看的",
|
||||
value: 1000,
|
||||
eq_type: EQUIP_TYPE.RING,
|
||||
});
|
||||
this.prop = {
|
||||
gj: 1
|
||||
};
|
||||
11
world/obj/eq/lv0/shoes.js
Normal file
11
world/obj/eq/lv0/shoes.js
Normal file
@@ -0,0 +1,11 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "双",
|
||||
name: "布鞋",
|
||||
desc: "寻常的布鞋,结实耐磨",
|
||||
value: 1000,
|
||||
eq_type: EQUIP_TYPE.SHOES,
|
||||
});
|
||||
this.prop = {
|
||||
fy: 1
|
||||
};
|
||||
12
world/obj/eq/lv0/tiegun.js
Normal file
12
world/obj/eq/lv0/tiegun.js
Normal file
@@ -0,0 +1,12 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "根",
|
||||
name: "铁棍",
|
||||
desc: "一根精铁打造的棍子",
|
||||
value: 2500,
|
||||
eq_type: EQUIP_TYPE.WEAPON,
|
||||
weapon_type: WEAPON_TYPE.CLUB
|
||||
});
|
||||
this.prop = {
|
||||
gj: 2
|
||||
};
|
||||
12
world/obj/eq/lv0/tiezhang.js
Normal file
12
world/obj/eq/lv0/tiezhang.js
Normal file
@@ -0,0 +1,12 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "根",
|
||||
name: "铁杖",
|
||||
desc: "这是一根浑铁杖,似乎威力不大。",
|
||||
value: 2500,
|
||||
eq_type: EQUIP_TYPE.WEAPON,
|
||||
weapon_type: WEAPON_TYPE.STAFF
|
||||
});
|
||||
this.prop = {
|
||||
gj: 2
|
||||
};
|
||||
14
world/obj/eq/lv0/whip.js
Normal file
14
world/obj/eq/lv0/whip.js
Normal file
@@ -0,0 +1,14 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
name: "长鞭",
|
||||
desc: "这是一柄普通的长鞭",
|
||||
unit: "柄",
|
||||
eq_msg: "$N「唰」的一声抖出一柄$n握在手中。",
|
||||
uneq_msg: "$N将手中的$n卷回腰间。",
|
||||
eq_type: EQUIP_TYPE.WEAPON,
|
||||
weapon_type: WEAPON_TYPE.WHIP,
|
||||
value: 1000,
|
||||
prop: {
|
||||
gj: 3
|
||||
}
|
||||
});
|
||||
8
world/obj/eq/lv0/zan.js
Normal file
8
world/obj/eq/lv0/zan.js
Normal file
@@ -0,0 +1,8 @@
|
||||
this.inherits(EQUIPMENT);
|
||||
this.set({
|
||||
unit: "支",
|
||||
name: "簪子",
|
||||
desc: "一支木制的簪子,没什么钱钱的少女侠客最爱,当然道士也可以用",
|
||||
value: 1500,
|
||||
eq_type: EQUIP_TYPE.HEAD,
|
||||
});
|
||||
Reference in New Issue
Block a user