mirror of
https://github.com/tbamud/tbamud.git
synced 2026-04-04 19:37:18 +02:00
Remove str_add since we are using 5e-like stats
This commit is contained in:
parent
d0708b4472
commit
0e44eaf319
14 changed files with 25 additions and 85 deletions
6
src/db.c
6
src/db.c
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue