feat: add npc info (level and aggro radius)

This commit is contained in:
k0t9i
2023-01-31 00:32:26 +04:00
parent a8734a4ca0
commit 89cec4f40f
11 changed files with 26504 additions and 20 deletions

View File

@ -41,9 +41,12 @@ namespace Client.Application.ViewModels
if (npc.IsHostile)
{
result = "Monster";
//todo aggr
if (npc.AggroRadius > 0)
{
result += "*";
}
}
//todo level
result += " " + npc.Level + "lvl";
return result;
}
}