mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-06 06:10:03 +00:00
Adds a new vorepanel mode addon "Affect Items", which, depending on the belly settings, will either contaminate or digest worn gear right off the prey without stripping. Item friendly modes will affect the prey's entire outfit at once, but the item digest mode will only affect one item at a time.
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
// Normal digestion modes
|
|
#define DM_HOLD "Hold"
|
|
#define DM_DIGEST "Digest"
|
|
#define DM_ABSORB "Absorb"
|
|
#define DM_UNABSORB "Unabsorb"
|
|
#define DM_DRAIN "Drain"
|
|
#define DM_SHRINK "Shrink"
|
|
#define DM_GROW "Grow"
|
|
#define DM_SIZE_STEAL "Size Steal"
|
|
#define DM_HEAL "Heal"
|
|
#define DM_EGG "Encase In Egg"
|
|
|
|
//#define DM_ITEMWEAK "Digest (Item Friendly)"
|
|
//#define DM_STRIPDIGEST "Strip Digest (Items Only)"
|
|
//#define DM_DIGEST_NUMB "Digest (Numbing)"
|
|
|
|
//Addon mode flags
|
|
#define DM_FLAG_NUMBING 0x1
|
|
#define DM_FLAG_STRIPPING 0x2
|
|
#define DM_FLAG_LEAVEREMAINS 0x4
|
|
#define DM_FLAG_THICKBELLY 0x8
|
|
#define DM_FLAG_AFFECTWORN 0x10
|
|
|
|
//Item related modes
|
|
#define IM_HOLD "Hold"
|
|
#define IM_DIGEST_FOOD "Digest (Food Only)"
|
|
#define IM_DIGEST "Digest"
|
|
|
|
//Stance for hostile mobs to be in while devouring someone.
|
|
#define HOSTILE_STANCE_EATING 99
|
|
|
|
// Defines for weight system
|
|
#define MIN_MOB_WEIGHT 70
|
|
#define MAX_MOB_WEIGHT 500
|
|
#define MIN_NUTRITION_TO_GAIN 450 // Above this amount you will gain weight
|
|
#define MAX_NUTRITION_TO_LOSE 50 // Below this amount you will lose weight
|
|
// #define WEIGHT_PER_NUTRITION 0.0285 // Tuned so 1050 (nutrition for average mob) = 30 lbs
|