* remove Guidebook
* water and blood
* localization things
* added vital extract
* some fixes
* added bloodgrass
* guidebook localization
* fixes icons and remove unnecesary fields
* added inhand cauldron
* fix wallmount board
* Update bonfire.yml
* Update bonfire.yml
* alchemy furnace + mist
* fixes
* Guidebook localization
* Update drinks.yml
* Revert "remove Guidebook"
This reverts commit 7924cf235f.
* fix filtering guidebook
* test fix
* Update heater.yml
14 lines
426 B
C#
14 lines
426 B
C#
using Content.Server.Temperature.Systems;
|
|
|
|
namespace Content.Server._CP14.Temperature;
|
|
|
|
/// <summary>
|
|
/// Adds thermal energy from FlammableComponent to entities with <see cref="TemperatureComponent"/> placed on it.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(EntityHeaterSystem))]
|
|
public sealed partial class CP14FlammableEntityHeaterComponent : Component
|
|
{
|
|
[DataField]
|
|
public float EnergyPerFireStack = 300f;
|
|
}
|