forked from github/server
"Nach der 1. Runde mit Gobo's und Silberpool sind alle Gobo's schwer verwundet" HP-Skalierung von Startgoblins repariert.
This commit is contained in:
parent
7f455d373c
commit
9da7d99f22
1 changed files with 2 additions and 2 deletions
|
@ -236,7 +236,7 @@ give_starting_equipment(struct unit *u)
|
||||||
break;
|
break;
|
||||||
case RC_GOBLIN:
|
case RC_GOBLIN:
|
||||||
set_show_item(u->faction, I_RING_OF_INVISIBILITY);
|
set_show_item(u->faction, I_RING_OF_INVISIBILITY);
|
||||||
scale_number(u, 10);
|
set_number(u, 10);
|
||||||
break;
|
break;
|
||||||
case RC_HUMAN:
|
case RC_HUMAN:
|
||||||
{
|
{
|
||||||
|
@ -264,7 +264,7 @@ give_starting_equipment(struct unit *u)
|
||||||
rsethorses(r, 250+rng_int()%51+rng_int()%51);
|
rsethorses(r, 250+rng_int()%51+rng_int()%51);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
u->hp = unit_max_hp(u);
|
u->hp = unit_max_hp(u) * u->number;
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean
|
boolean
|
||||||
|
|
Loading…
Reference in a new issue