Food Spoilage

7 days to die food spoilage, 7 days to die food, 7 days to die dmt mods

Introduces food spoilage to the game.

Features

  • Most foods that are not canned or otherwise preserved can now spoil.
  • Prepared drinks (such as teas) can now spoil.
  • Battery-powered refrigerators can be crafted. Recipes can be learned through schematics, or by purchasing the Advanced Engineering perk.

Dependent and Compatible Mods

This mod is prefixed with a number, in order to load it after all dependent mods.

This mod is dependent upon the 0-SphereIICore mod. It was designed and tested to be used with version 19.3.1.14 of that mod.

This mod might not work with different versions of 0-SphereIICore. Use other versions at your own risk.

Technical Details

This mod uses XPath to modify XML files, and does not require SDX or DMT.

However, the 0-SphereIICore mod does require DMT. It is not compatible with EAC.

After installation, it is highly recommended to start a new game.

How Food Spoilage Works

This mod depends upon the food spoilage code provided by the 0-SphereIICore mod. That mod has custom C# code that is configurable via XML. It is loosely based on item degradation from the vanilla game.

Food spoilage is calculated when the player opens a container with one or more stacks of consumable items in it. The term SpereII uses for this calculation is loss calculation.

A loss calculation can only happen after a certain number of game ticks since the last time the loss was calculated. This number of ticks is called ticks per loss. The ticks per loss is configurable in XML, and can be set individually per consumable item.

The loss caluclation can happen multiple times at once, if the ticks per loss would have been reached multiple times since the container was last opened. For example, if ticks per loss is 100, and it has been 1000 ticks since the user last opened the container, then the loss calculation will happen 10 times when the user opens that container.

Each time the loss calculation occurs, it uses a number of different values to determine the amount of food spoilage:

  • The spoilage amount starts as an amount specified for that consumable item in the item’s XML. This amount is called spoilage per tick (though it should probably be called “spoilage per loss” or “spoilage per calculation”).
  • The stack of consumable items is always located in some container, and that container adds a number to the spoilage amount. The container can be the player’s backpack, the player’s toolbar, or a loot container. All three of these locations have their values set globally in XML.
  • If the item stack is located in a loot container, that container can offset the global amount of spoilage that is added for all loot containers. This is called the preserve bonus of the container. The preserve bonus is subtracted from the spoilage amount.

Once that amount is calculated, it is compared against the total amount of spoilage that can occur before one consumable item spoils. That total amount of spoilage is called the maximum spoilage.

This process happens until the calculated spoilage amount is less than the maximum spoilage:

  • One consumable item is removed from the item stack.
  • A spoiled item, representing a spoiled version of the original item, is created. The spoiled item can be specified in the XML for each consumable item, or defaults to rotten meat. If this is set to the consumable item itself, then the consumable item spoils into nothing.
  • The spoiled item is placed in the player’s backpack, creating a new stack if necessary. (It goes into the player’s backpack regardless of which container held the original item.) If there is no room in the player’s backpack, the spoiled item is dropped on the ground.
  • The maximum spoilage is subtracted from the calculated spoilage amount.

Here are the details about configuring all this in the XML files.

Feature Configuration Block XML

SphereII created a block in blocks.xml that is designed to hold feature configuration data for the entire Core mod. Each property node in that block is devoted to one feature, and that node has child property nodes that hold the configuration data.

The property node that deals with food spoilage has the “FoodSpoilage” class. These are the names of child property nodes and the features they configure:

  • “Logging”: Enables or disables verbose logging.
  • “FoodSpoilage”: Enables or disables food spoilage in the game.
  • “Toolbelt”: The amount of spoilage to add, per loss calculation, when consumable item stacks are located in the player’s toolbelt.
  • “Backpack”: The amount of spoilage to add, per loss calculation, when consumable item stacks are located in the player’s backpack.
  • “Container”: The amount of spoilage to add, per loss calculation, when consumable item stacks are located in loot containers.
  • “MinimumSpoilage”: The absolute minimum spoilage per loss calculation.
  • “TickPerLoss”: The default ticks per loss.
  • “SpoiledItem”: The default item that consumable items turn into when they spoil.

Consumable Item XML

These can be added as new properties to each item in items.xml that is consumable.

  • “Spoilable”: Enables or disables food spoilage on this item. Note: Setting the value to “false” does not work. If a consumable item is not spoilable, remove this property entirely.
  • “ShowQuality”: Whether to only show the quality bar underneath the item.
  • “QualityTierColor”: The tier number for the color of the quality bar underneath the item. This can be an integer from 0 through 7.
  • “SpoiledItem”: The item that this consumable item turns into when it spoils.
  • “TickPerLoss”: The ticks per loss for this consumable item.
  • “SpoilageMax”: The maximum spoilage before one consumable item spoils.
  • “SpoilagePerTick”: The spoilage “per tick” (actually, per loss).

Container Block XML

This can be added as a new property to each container in blocks.xml, as desired.

“PreserveBonus”: The preservation bonus, per loss calculation, for this container.

Hints for Customizing

Khzmusik recommend that you keep SpoilageMax and SpoilagePerTick at their default values of 1000 and 1, respectively. This makes the math easier.

If SpoilageMax is 1000 and SpoilagePerTick is 1, then TickPerLoss should be the number of in-game days that it takes for one item to spoil in ideal conditions, multiplied by 24. (The math works out because there are 1000 ticks per in-game hour.)

If we want N items to spoil in those in-game days, set SpoilagePerTick to N (but don’t adjust TickPerLoss).

There will be an extra number of items spoiled according to the stack location, and the container block’s PreserveBonus value (if any). For instance, if the stack is in a “Container” (set to 4 in the config block), and the container block has a PreserveBonus of 1, an extra 3 items will spoil in that number of in-game days. (The spoilage will not occur until the next loss tick, as determined by TickPerLoss.)

This actually makes some fairly complicated things possible. For example, let’s say that you don’t want corn bread to be affected very much by the container it’s in. But you still want as many items to spoil as any other food – say, 3 times per week.

In this case, you can use a longer number of in-game days to represent the time it takes for one piece of cornbread to spoil – say, 4 weeks. To make up for it, you set the SpoilagePerTick to 12, so it still averages out to 3 per week.

Even if an extra 4 pieces of cornbread spoil because it’s in a container with no PreserveBonus value, those 4 pieces are spread out over 4 weeks, so they’re much less noticable to players.

On the other hand, if you want meat stew to be very affected by the container it’s in, use a short number of in-game days – say, 3 – and set SpoilagePerTick to 1. If it’s in a container with no PreserveBonus value, an extra 4 bowls of stew will spoil during those 3 days. But if it’s in a container with a PreserveBonus value of 2, only 2 extra bowls of stew will spoil during those same three in-game days.

Possible Improvements

These are some ideas about possible features that might improve the mod. He has not looked into whether they are possible/practical to implement.

Unpowered Food Preservation Blocks

These would not require power.

The ones that are just specially-built containers (e.g. the pie safe) would have a very low PreserveBonus and the ones that work by convection (e.g. clay pot cooler) would have a medium-low PreserveBonus.

The ones that work by convection would ideally require replenishing with a resource (e.g. water or snowballs), but he doesn’t yet know how to do that, or if it’s possible.

Powered Container Improvements

Instead of being perpetually self-powered with a battery, the powered containers (fridges) should use the 7D2D power system. He doesn’t yet know how/if this could be implemented.

Other types of containers could also be created:

  • Powered beer cooler/mini-fridge
  • Powered freezer – PreserveBonus would be greater than “Container” spoilage.
    • If implemented, set minimum spoilage to zero (though 0.1 is hard coded in SphereII Core).

Changelog

Coffee now spoils, as does beer; added IPA that doesn’t (must be crafted)

Download

The forum topic of the mod is here.

Credits: Khzmusik

Share this with your friends:

Leave a Reply

Your email address will not be published. Required fields are marked *