You can force player (or any entity) to spawn with less health with script. This is an example of such script declared in a level:
spawn delay
@script
void main()
{
void P1 = getplayerproperty(0, "entity");
if(P1){
changeentityproperty(P1, "health", 10);
}
}
@end_script...