mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-19 10:02:02 +03:00
CFG WEAPONS DONE
This commit is contained in:
56
SQF/dayz_code/Configs/CfgWeapons/Melee/BaseballBat.hpp
Normal file
56
SQF/dayz_code/Configs/CfgWeapons/Melee/BaseballBat.hpp
Normal file
@@ -0,0 +1,56 @@
|
||||
class MeleeBaseBallBat : MeleeWeapon
|
||||
{
|
||||
scope = public;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\baseball_bat_weaponized.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_baseball_bat_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_BASEBALLBAT;
|
||||
descriptionShort = $STR_EQUIP_DESC_BASEBALLBAT;
|
||||
|
||||
magazines[] = {"Bat_Swing"};
|
||||
|
||||
droppeditem = "MeleeBaseBallBat";
|
||||
|
||||
class Library
|
||||
{
|
||||
libTextDesc = $STR_EQUIP_DESC_BASEBALLBAT;
|
||||
};
|
||||
};
|
||||
|
||||
class MeleeBaseBallBatBarbed : MeleeWeapon
|
||||
{
|
||||
scope = public;
|
||||
|
||||
model="\z\addons\dayz_communityassets\models\baseball_bat_barbed_weaponized.p3d";
|
||||
picture="\z\addons\dayz_communityassets\pictures\equip_baseball_bat_barbed_ca.paa";
|
||||
displayName=$STR_EQUIP_NAME_BASEBALLBATBARBED;
|
||||
descriptionShort=$STR_EQUIP_DESC_BASEBALLBATBARBED;
|
||||
|
||||
magazines[] = {"BatBarbed_Swing"};
|
||||
|
||||
droppeditem = "MeleeBaseBallBatBarbed";
|
||||
|
||||
class Library
|
||||
{
|
||||
libTextDesc = $STR_EQUIP_DESC_BASEBALLBATBARBED;
|
||||
};
|
||||
};
|
||||
|
||||
class MeleeBaseBallBatNails : MeleeWeapon
|
||||
{
|
||||
scope = public;
|
||||
|
||||
model="\z\addons\dayz_communityassets\models\baseball_bat_nails_weaponized.p3d";
|
||||
picture="\z\addons\dayz_communityassets\pictures\equip_baseball_bat_nails_ca.paa";
|
||||
displayName=$STR_EQUIP_NAME_BASEBALLBATNAILS;
|
||||
descriptionShort=$STR_EQUIP_DESC_BASEBALLBATNAILS;
|
||||
|
||||
magazines[] = {"BatNails_Swing"};
|
||||
|
||||
droppeditem = "MeleeBaseBallBatNails";
|
||||
|
||||
class Library
|
||||
{
|
||||
libTextDesc = $STR_EQUIP_DESC_BASEBALLBATNAILS;
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user