Files
wsmud/world/family/monster.js
2026-05-26 16:41:20 +08:00

11 lines
193 B
JavaScript

this.inherits(FAMILY);
this.id = "MONSTER";
this.name = "怪物";
this.call = function (player, isbad) {
return isbad ? "畜生" : "大仙";
}
this.call_me = function (player, isbad) {
}