mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-25 01:49:19 +03:00
Add 2 new items and 9 food versions
Submitted by @Damian6666 New items: - Sunflower Oil - Dung - Steak with fries - Sushi - Pumpkin soup - Carrot soup - Potato soup - Garlic soup - Vegetable platter - Honey tea - Honeycomb
This commit is contained in:
36
SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Consumables/Misc.hpp
vendored
Normal file
36
SQF/dayz_code/external/R3F_Realism/R3F_Weight/Magazines/Consumables/Misc.hpp
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
class FoodSteakWithPotatos
|
||||
{
|
||||
weight = 0.6;
|
||||
};
|
||||
class FoodSushi
|
||||
{
|
||||
weight = 0.8;
|
||||
};
|
||||
class FoodPumpkinSoup
|
||||
{
|
||||
weight = 0.4;
|
||||
};
|
||||
class FoodCarrotSoup
|
||||
{
|
||||
weight = 0.4;
|
||||
};
|
||||
class FoodPotatoSoup
|
||||
{
|
||||
weight = 0.4;
|
||||
};
|
||||
class FoodGarlicSoup
|
||||
{
|
||||
weight = 0.4;
|
||||
};
|
||||
class FoodVegetablePlate
|
||||
{
|
||||
weight = 0.4;
|
||||
};
|
||||
class ItemHoneyTea
|
||||
{
|
||||
weight = 1;
|
||||
};
|
||||
class ItemHoney
|
||||
{
|
||||
weight = 0.2;
|
||||
};
|
||||
@@ -169,12 +169,4 @@ class FoodCanDog1
|
||||
class FoodCanDog2
|
||||
{
|
||||
weight = 0.2;
|
||||
};
|
||||
class FoodCanFrozen1
|
||||
{
|
||||
weight = 0.25;
|
||||
};
|
||||
class FoodCanFrozen2
|
||||
{
|
||||
weight = 0.25;
|
||||
};
|
||||
@@ -81,12 +81,4 @@ class ItemSodaRbull
|
||||
class ItemSodaOrangeSherbet
|
||||
{
|
||||
weight = 0.2;
|
||||
};
|
||||
class ItemSodaFrozen1
|
||||
{
|
||||
weight = 0.25;
|
||||
};
|
||||
class ItemSodaFrozen2
|
||||
{
|
||||
weight = 0.25;
|
||||
};
|
||||
@@ -244,4 +244,28 @@ class ItemBackpackUpgrade_2
|
||||
class ItemBackpackUpgrade_3
|
||||
{
|
||||
weight = 6;
|
||||
};
|
||||
class FoodCanFrozen1
|
||||
{
|
||||
weight = 0.25;
|
||||
};
|
||||
class FoodCanFrozen2
|
||||
{
|
||||
weight = 0.25;
|
||||
};
|
||||
class ItemSodaFrozen1
|
||||
{
|
||||
weight = 0.25;
|
||||
};
|
||||
class ItemSodaFrozen2
|
||||
{
|
||||
weight = 0.25;
|
||||
};
|
||||
class ItemDung
|
||||
{
|
||||
weight = 2.5;
|
||||
};
|
||||
class ItemSunFlowerOil
|
||||
{
|
||||
weight = 0.6;
|
||||
};
|
||||
@@ -47,6 +47,10 @@ class equip_comfreyleafs
|
||||
{
|
||||
weight = 0.1;
|
||||
};
|
||||
class ItemComfreySeed
|
||||
{
|
||||
weight = 0.2;
|
||||
};
|
||||
class FoodPumpkin
|
||||
{
|
||||
weight = 3;
|
||||
|
||||
@@ -43,6 +43,7 @@ class CfgWeight
|
||||
#include "Magazines\Consumables\PlasticWaterbottle.hpp"
|
||||
#include "Magazines\Consumables\Soda.hpp"
|
||||
#include "Magazines\Consumables\WaterBottle.hpp"
|
||||
#include "Magazines\Consumables\Misc.hpp"
|
||||
|
||||
#include "Magazines\Items\Currency\AluminumBar.hpp"
|
||||
#include "Magazines\Items\Currency\Briefcase.hpp"
|
||||
|
||||
Reference in New Issue
Block a user