mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
47 lines
1008 B
C++
47 lines
1008 B
C++
class DZ_AmmoBoxRU : ReammoBox
|
|
{
|
|
scope = public;
|
|
|
|
model = "ca\weapons\ammoboxes\proxy_ruweaponboxlow.p3d";
|
|
displayName = "Ammo box"; //TODO move to stringtable
|
|
};
|
|
|
|
class DZ_ExplosiveBoxRU : ReammoBox
|
|
{
|
|
scope = public;
|
|
|
|
model = "ca\weapons\ammoboxes\proxy_ruexplosives.p3d";
|
|
displayName = "Ammo box"; //TODO move to stringtable
|
|
};
|
|
|
|
class DZ_AmmoBoxUS : ReammoBox
|
|
{
|
|
scope = public;
|
|
|
|
model = "ca\weapons\ammoboxes\proxy_usbasicammoboxsmall.p3d";
|
|
displayName = "Ammo box"; //TODO move to stringtable
|
|
};
|
|
|
|
class DZ_ExplosivesBoxUS : ReammoBox
|
|
{
|
|
scope = public;
|
|
|
|
model = "ca\weapons\ammoboxes\proxy_usbasicexplosives.p3d";
|
|
displayName = "Ammo box"; //TODO move to stringtable
|
|
};
|
|
|
|
class DZ_CardboardBox : ReammoBox
|
|
{
|
|
scope = public;
|
|
|
|
model = "dayz_equip\models\cardboard_box.p3d";
|
|
displayName = "Cardboard box"; //TODO move to stringtable
|
|
};
|
|
|
|
class DZ_MedBox : ReammoBox
|
|
{
|
|
scope = public;
|
|
|
|
model = "z\addons\dayz_communityassets\models\medical_freezbox.p3d";
|
|
displayName = $STR_DAYZ_OBJ_2;
|
|
}; |