2309 {
2311 return;
2312
2313 if (!IsMagazine() && other_item)
2314 {
2316 if (quantity_used != 0)
2317 {
2318 float hp1 = GetHealth01("","");
2319 float hp2 = other_item.GetHealth01("","");
2320 float hpResult = ((hp1*
GetQuantity()) + (hp2*quantity_used));
2321 hpResult = hpResult / (
GetQuantity() + quantity_used);
2322
2323 hpResult *= GetMaxHealth();
2324 Math.Round(hpResult);
2325 SetHealth("", "Health", hpResult);
2326
2328 other_item.AddQuantity(-quantity_used);
2329 }
2330 }
2332 }
override float GetQuantity()
float ComputeQuantityUsedEx(ItemBase other_item, bool use_stack_max=true)
bool AddQuantity(float value, bool destroy_config=true, bool destroy_forced=false)
add item quantity[related to varQuantity... config entry], destroy_config = true > if the quantity re...
void OnCombine(ItemBase other_item)
override bool CanBeCombined(EntityAI other_item, bool reservation_check=true, bool stack_max_limit=false)