summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/map/status.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c
index b7ad490f2..ebdbd9370 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -1824,8 +1824,13 @@ int status_calc_mob_(struct mob_data* md, bool first)
ShowError("status_calc_mob: No castle set at map %s\n", map[md->bl.m].name);
else
if(gc->castle_id < 24 || md->class_ == MOBID_EMPERIUM) {
+#if REMODE
status->max_hp += 50 * gc->defense;
status->max_sp += 70 * gc->defense;
+#else
+ status->max_hp += 1000 * gc->defense;
+ status->max_sp += 200 * gc->defense;
+#endif
status->hp = status->max_hp;
status->sp = status->max_sp;
status->def += (gc->defense+2)/3;