init: add workspace files
This commit is contained in:
28
world/npc/yz/linzhennan.js
Normal file
28
world/npc/yz/linzhennan.js
Normal file
@@ -0,0 +1,28 @@
|
||||
this.inherits(NPC);
|
||||
this.set({
|
||||
name: "林震南",
|
||||
desc: "他就是「福威镖局」的总镖头--林震南。",
|
||||
title: "福威镖局当家的",
|
||||
gender: 1,
|
||||
age: 45,
|
||||
per: 34,
|
||||
mp: 3000,
|
||||
max_mp: 3000,
|
||||
hp: 3000,
|
||||
max_hp: 3000,
|
||||
});
|
||||
this.skill_map(
|
||||
["unarmed", 150],
|
||||
["dodge", 150],
|
||||
["parry", 150]);
|
||||
this.add_action("biao", "运镖", function (me) {
|
||||
|
||||
USERTASK.GET("yunbiao").on_start(me);
|
||||
});
|
||||
|
||||
|
||||
this.add_action("ksyb", "雇佣镖师", function (me) {
|
||||
|
||||
USERTASK.GET("yunbiao").quick_start(me);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user