Remove str_add since we are using 5e-like stats

This commit is contained in:
kinther 2025-10-11 08:44:45 -07:00
parent d0708b4472
commit 0e44eaf319
14 changed files with 25 additions and 85 deletions

View file

@ -1628,11 +1628,6 @@ static void interpret_espec(const char *keyword, const char *value, int i, int n
mob_proto[i].real_abils.str = num_arg;
}
CASE("StrAdd") {
RANGE(0, 100);
mob_proto[i].real_abils.str_add = num_arg;
}
CASE("Int") {
RANGE(3, 25);
mob_proto[i].real_abils.intel = num_arg;
@ -3689,7 +3684,6 @@ void init_char(struct char_data *ch)
ch->real_abils.wis = 25;
ch->real_abils.dex = 25;
ch->real_abils.str = 25;
ch->real_abils.str_add = 100;
ch->real_abils.con = 25;
ch->real_abils.cha = 25;