summaryrefslogtreecommitdiff
path: root/src/map/battle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/battle.cpp')
-rw-r--r--src/map/battle.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/map/battle.cpp b/src/map/battle.cpp
index 589568b..991a489 100644
--- a/src/map/battle.cpp
+++ b/src/map/battle.cpp
@@ -182,6 +182,27 @@ int battle_get_max_hp(dumb_ptr<block_list> bl)
}
}
+VString<23> battle_get_name(dumb_ptr<block_list> bl)
+{
+ VString<23> name;
+ nullpo_retr(name, bl);
+
+ switch (bl->bl_type)
+ {
+ case BL::PC:
+ name = bl->is_player()->status_key.name.to__actual();
+ break;
+ case BL::NPC:
+ name = bl->is_npc()->name;
+ break;
+ case BL::MOB:
+ name = bl->is_mob()->name;
+ break;
+ }
+
+ return name;
+}
+
/*==========================================
* 対象のStrを返す(汎用)
* 戻りは整数で0以上