Merge branch 'NetHack-3.6.2'
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* NetHack 3.6 extern.h $NHDT-Date: 1547486885 2019/01/14 17:28:05 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.682 $ */
|
||||
/* NetHack 3.6 extern.h $NHDT-Date: 1548209735 2019/01/23 02:15:35 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.684 $ */
|
||||
/* Copyright (c) Steve Creps, 1988. */
|
||||
/* NetHack may be freely redistributed. See license for details. */
|
||||
|
||||
@@ -1907,6 +1907,7 @@ E int NDECL(dogaze);
|
||||
E int NDECL(dohide);
|
||||
E int NDECL(dopoly);
|
||||
E int NDECL(domindblast);
|
||||
E void NDECL(uunstick);
|
||||
E void FDECL(skinback, (BOOLEAN_P));
|
||||
E const char *FDECL(mbodypart, (struct monst *, int));
|
||||
E const char *FDECL(body_part, (int));
|
||||
@@ -2516,7 +2517,7 @@ E int FDECL(find_roll_to_hit, (struct monst *, UCHAR_P, struct obj *,
|
||||
int *, int *));
|
||||
E boolean FDECL(attack, (struct monst *));
|
||||
E boolean FDECL(hmon, (struct monst *, struct obj *, int, int));
|
||||
E int FDECL(damageum, (struct monst *, struct attack *));
|
||||
E int FDECL(damageum, (struct monst *, struct attack *, int));
|
||||
E void FDECL(missum, (struct monst *, struct attack *, BOOLEAN_P));
|
||||
E int FDECL(passive, (struct monst *, struct obj *, BOOLEAN_P, int,
|
||||
UCHAR_P, BOOLEAN_P));
|
||||
@@ -2733,6 +2734,8 @@ E int FDECL(vms_get_saved_games, (const char *, char ***));
|
||||
E const char *FDECL(weapon_descr, (struct obj *));
|
||||
E int FDECL(hitval, (struct obj *, struct monst *));
|
||||
E int FDECL(dmgval, (struct obj *, struct monst *));
|
||||
E int FDECL(special_dmgval, (struct monst *, struct monst *, long, long *));
|
||||
E void FDECL(silver_sears, (struct monst *, struct monst *, long));
|
||||
E struct obj *FDECL(select_rwep, (struct monst *));
|
||||
E boolean FDECL(monmightthrowwep, (struct obj *));
|
||||
E struct obj *FDECL(select_hwep, (struct monst *));
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* NetHack 3.6 mondata.h $NHDT-Date: 1547086248 2019/01/10 02:10:48 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.35 $ */
|
||||
/* NetHack 3.6 mondata.h $NHDT-Date: 1548209737 2019/01/23 02:15:37 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.36 $ */
|
||||
/* Copyright (c) 1989 Mike Threepoint */
|
||||
/* NetHack may be freely redistributed. See license for details. */
|
||||
|
||||
@@ -59,6 +59,7 @@
|
||||
#define slithy(ptr) (((ptr)->mflags1 & M1_SLITHY) != 0L)
|
||||
#define is_wooden(ptr) ((ptr) == &mons[PM_WOOD_GOLEM])
|
||||
#define thick_skinned(ptr) (((ptr)->mflags1 & M1_THICK_HIDE) != 0L)
|
||||
#define hug_throttles(ptr) ((ptr) == &mons[PM_ROPE_GOLEM])
|
||||
#define slimeproof(ptr) \
|
||||
((ptr) == &mons[PM_GREEN_SLIME] || flaming(ptr) || noncorporeal(ptr))
|
||||
#define lays_eggs(ptr) (((ptr)->mflags1 & M1_OVIPAROUS) != 0L)
|
||||
|
||||
Reference in New Issue
Block a user