Ver Fonte

Made the emperium changes from r15321 restricted to renewal mode

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15327 54d463be-8e91-2dee-dedb-b68131a5f0ec
shennetsind há 13 anos atrás
pai
commit
a2705ca177
1 ficheiros alterados com 5 adições e 0 exclusões
  1. 5 0
      src/map/status.c

+ 5 - 0
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;