ren nhconst.h -> weight.h

The speed related values were not used, except for NORMAL_SPEED,
which has been moved back to permonst.h
This commit is contained in:
nhmall
2025-03-19 17:14:07 -04:00
parent 601d03b71d
commit 1f99638bbf
13 changed files with 40 additions and 42 deletions

View File

@@ -12,7 +12,7 @@
#include "lint.h"
#include "align.h"
#include "nhconst.h"
#include "weight.h"
#include "dungeon.h"
#include "stairs.h"
#include "objclass.h"

View File

@@ -77,6 +77,8 @@ struct permonst {
uchar mcolor; /* color to use */
};
#define NORMAL_SPEED 12
extern NEARDATA struct permonst mons[NUMMONS + 1]; /* the master list of
* monster types */

View File

@@ -29,14 +29,6 @@ enum weight_constants {
WT_DRAGON = 4500, /* weight of dragon body */
};
enum monster_speeds {
VERY_SLOW = 3,
SLOW_SPEED = 9,
NORMAL_SPEED = 12, /* movement rates */
FAST_SPEED = 15,
VERY_FAST = 24,
};
#endif /* NHCONST_H */