Update player_tameDog raw meat names

This commit is contained in:
ebaydayz
2016-04-18 13:36:09 -04:00
parent d46eb13267
commit 11741fa710
8 changed files with 87 additions and 29 deletions

View File

@@ -172,4 +172,32 @@ class FoodBeefCooked : FoodCooked
bloodRegen = 800;
Nutrition[] = {332,700,0,0};
};
class FoodDogRaw : FoodRaw
{
scope = public;
model = "\dayz_equip\models\food_steak_gear.p3d";
picture = "\dayz_equip\textures\equip_steak_ca.paa";
displayName = $STR_FOOD_NAME_DOG_RAW;
descriptionShort = $STR_EQUIP_DESC_47;
bloodRegen = 300;
Nutrition[] = {143,300,0,0};
cookOutput = "FoodDogCooked";
};
class FoodDogCooked : FoodCooked
{
scope = public;
model = "\dayz_equip\models\food_steak_cooked_gear.p3d";
picture = "\dayz_equip\textures\equip_steak_cooked_ca.paa";
displayName = $STR_FOOD_NAME_DOG_COOKED;
descriptionShort = $STR_EQUIP_DESC_25;
bloodRegen = 600;
Nutrition[] = {143,600,0,0};
};