Files
wsmud/world/npc/wudang/guxu.js
2026-05-26 16:41:20 +08:00

32 lines
759 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
this.inherits(NPC);
this.set({
name: "谷虚道长",
desc: "他就是俞莲舟的弟子谷虚道长。\n他今年四十岁主管武当派的俗事。",
title: "武当派第三代弟子",
gender: 1,
age: 45,
per: 33,
max_mp: 1400,
str: 25,
con: 27,
dex: 20,
int: 25,
family: FAMILIES.WUDANG,
family_level: 3,
level: 1
});
this.set_objects(["eq/lv1/wd_cloth", 1, 1], ["eq/lv1/wd_jian", 1, 1]);
this.skill_map(
["dodge", 100],
["parry", 100],
["force", 100],
["unarmed", 100],
["sword", 100],
["literate", 100],
["wudangxinfa", 100, "force"],
["wudangjianfa", 100, "sword"],
["wudangchangquan", 100,"unarmed"]);
this.on_master = function (me) {
return true;
}