diff --git a/resources/[inventory]/cs_shops/config/config.lua b/resources/[inventory]/cs_shops/config/config.lua index 38e862d3b..e316a1b94 100644 --- a/resources/[inventory]/cs_shops/config/config.lua +++ b/resources/[inventory]/cs_shops/config/config.lua @@ -1499,7 +1499,12 @@ CodeStudio.Products = { itemPrice = 0, itemInfo = "", }, - + ['weapon_klog19fde'] = { + itemName = "Klog 19 FDE", + itemStock = 50, + itemPrice = 0, + itemInfo = "", + }, } diff --git a/resources/[inventory]/cs_shops/ui/image/weapon_klog19fde.png b/resources/[inventory]/cs_shops/ui/image/weapon_klog19fde.png new file mode 100644 index 000000000..4dd98227f Binary files /dev/null and b/resources/[inventory]/cs_shops/ui/image/weapon_klog19fde.png differ diff --git a/resources/[inventory]/inventory_images/images/weapon_klog19fde.png b/resources/[inventory]/inventory_images/images/weapon_klog19fde.png new file mode 100644 index 000000000..4dd98227f Binary files /dev/null and b/resources/[inventory]/inventory_images/images/weapon_klog19fde.png differ diff --git a/resources/[inventory]/tgiann-inventory/configs/configAttachment.lua b/resources/[inventory]/tgiann-inventory/configs/configAttachment.lua index cf6342254..c101f5770 100644 --- a/resources/[inventory]/tgiann-inventory/configs/configAttachment.lua +++ b/resources/[inventory]/tgiann-inventory/configs/configAttachment.lua @@ -95,6 +95,25 @@ config.attachment.weaponAttachment = { { item = "free", component = "COMPONENT_AT_PI_SUPP_02" }, }, }, + ["weapon_klog19fde"] = { + ["magazine"] = { + { item = "free", component = "COMPONENT_PISTOL_MK2_CLIP_01", default = true }, + { item = "free", component = "COMPONENT_PISTOL_MK2_CLIP_02" }, + }, + ["flashlight"] = { + { item = "free", component = "COMPONENT_AT_PI_FLSH_02" }, + }, + ["scope"] = { + { item = "free", component = "COMPONENT_AT_PI_RAIL" }, + }, + ["muzzle"] = { + { item = "free", component = "COMPONENT_AT_PI_COMP" }, + { item = "free", component = "COMPONENT_AT_PI_SUPP_02" }, + }, + }, + + + --ILLEGAL Pistol ["weapon_m45a1fm"] = { ["magazine"] = { diff --git a/resources/[inventory]/tgiann-inventory/configs/configWeapon.lua b/resources/[inventory]/tgiann-inventory/configs/configWeapon.lua index 8a76b0807..2a9a56a61 100644 --- a/resources/[inventory]/tgiann-inventory/configs/configWeapon.lua +++ b/resources/[inventory]/tgiann-inventory/configs/configWeapon.lua @@ -141,6 +141,7 @@ local weaponList = { weapon_navyrevolver = 500, weapon_gadgetpistol = 500, weapon_pistolxm3 = 500, + weapon_klog19fde = 500, -- Mod -- Submachine Guns weapon_microsmg = 1000, weapon_smg = 1000, diff --git a/resources/[inventory]/tgiann-inventory/items/items.lua b/resources/[inventory]/tgiann-inventory/items/items.lua index 9ffac91c3..7d08134c6 100644 --- a/resources/[inventory]/tgiann-inventory/items/items.lua +++ b/resources/[inventory]/tgiann-inventory/items/items.lua @@ -10731,7 +10731,17 @@ itemsData = { image = 'line_coke.png', name = 'line_coke', }, - + weapon_klog19fde = { + shouldClose = true, + type = 'weapon', + description = '', + weight = 1000, + label = 'Klog 19 FDE', + unique = true, + useable = true, + image = 'weapon_klog19fde.png', + name = 'weapon_klog19fde', + }, } diff --git a/resources/[inventory]/tgiann-inventory/items/weapons.lua b/resources/[inventory]/tgiann-inventory/items/weapons.lua index c53c752c1..70cd2b173 100644 --- a/resources/[inventory]/tgiann-inventory/items/weapons.lua +++ b/resources/[inventory]/tgiann-inventory/items/weapons.lua @@ -136,6 +136,10 @@ local weaponsList = { weapon_airsoftm4 = { name = 'weapon_airsoftm4', label = 'Softair M4', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftm4.png', description = '' }, weapon_airsoftak74 = { name = 'weapon_airsoftak74', label = 'Softair AK75', weight = 1000, ammotype = 'AMMO_AIRSOFT', image = 'weapon_airsoftak74.png', description = '' }, + -- Addon + weapon_klog19fde = { name = 'weapon_klog19fde', label = 'Klog 19 FDE', weight = 1000, ammotype = 'AMMO_PISTOL', image = 'weapon_klog19fde.png', description = '' }, + + } local ammoTypeToPolice = { AMMO_SMG = "AMMO_POLICE_SMG", diff --git a/resources/[jobs]/[weapons]/Klog19FDE/cl_weaponNames.lua b/resources/[jobs]/[weapons]/Klog19FDE/cl_weaponNames.lua new file mode 100644 index 000000000..51b02f1c7 --- /dev/null +++ b/resources/[jobs]/[weapons]/Klog19FDE/cl_weaponNames.lua @@ -0,0 +1 @@ +AddTextEntry("WEAPON_KLOG19FDE", "Klog 19 FDE") diff --git a/resources/[jobs]/[weapons]/Klog19FDE/fxmanifest.lua b/resources/[jobs]/[weapons]/Klog19FDE/fxmanifest.lua new file mode 100644 index 000000000..989db165b --- /dev/null +++ b/resources/[jobs]/[weapons]/Klog19FDE/fxmanifest.lua @@ -0,0 +1,19 @@ +fx_version 'cerulean' +games {'gta5'} +description 'Add-on weapon generated using vWeaponsToolkit' + +files{ + '**/weaponcomponents.meta', + '**/weaponarchetypes.meta', + '**/weaponanimations.meta', + '**/pedpersonality.meta', + '**/weapons.meta', +} + +data_file 'WEAPONCOMPONENTSINFO_FILE' '**/weaponcomponents.meta' +data_file 'WEAPON_METADATA_FILE' '**/weaponarchetypes.meta' +data_file 'WEAPON_ANIMATIONS_FILE' '**/weaponanimations.meta' +data_file 'PED_PERSONALITY_FILE' '**/pedpersonality.meta' +data_file 'WEAPONINFO_FILE' '**/weapons.meta' + +client_script 'cl_weaponNames.lua' diff --git a/resources/[jobs]/[weapons]/Klog19FDE/meta/pedpersonality.meta b/resources/[jobs]/[weapons]/Klog19FDE/meta/pedpersonality.meta new file mode 100644 index 000000000..214d6266e --- /dev/null +++ b/resources/[jobs]/[weapons]/Klog19FDE/meta/pedpersonality.meta @@ -0,0 +1,383 @@ + + + + + + UNHOLSTER_UNARMED + + + + WEAPON_KLOG19FDE + + unarmed_holster_1h + + + + + UNHOLSTER_2H_MELEE + + + + WEAPON_KLOG19FDE + + 2h_melee_holster_1h + + + + + UNHOLSTER_1H + + + + WEAPON_KLOG19FDE + + 1h_holster_1h + + + + + UNHOLSTER_2H + + + + WEAPON_KLOG19FDE + + 2h_holster_1h + + + + + UNHOLSTER_MINIGUN + + + + WEAPON_KLOG19FDE + + mini_holster_1h + + + + + UNHOLSTER_UNARMED_STEALTH + + + + WEAPON_KLOG19FDE + + unarmed_holster_1h + + + + + UNHOLSTER_2H_MELEE_STEALTH + + + + WEAPON_KLOG19FDE + + unarmed_holster_1h + + + + + UNHOLSTER_1H_STEALTH + + + + WEAPON_KLOG19FDE + + 1h_holster_1h + + + + + UNHOLSTER_2H_STEALTH + + + + WEAPON_KLOG19FDE + + 2h_holster_1h + + + + + + + DEFAULT_ACTION + + + + + WEAPON_KLOG19FDE + + + + MOVE_ACTION@P_M_ZERO@ARMED@CORE + MOVE_ACTION@P_M_ZERO@ARMED@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_ACTION@GENERIC@TRANS@1H + + MOVE_ACTION@P_M_ZERO@HOLSTER + UNHOLSTER_1H + + + + + + + + WEAPON_KLOG19FDE + + + + MOVE_STEALTH@P_M_ZERO@UNARMED@CORE + MOVE_STEALTH@P_M_ZERO@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_STEALTH@GENERIC@TRANS@1H + + MOVE_STEALTH@P_M_ZERO@HOLSTER + UNHOLSTER_1H_STEALTH + + + + + + + + + + MP_FEMALE_ACTION + + + + + WEAPON_KLOG19FDE + + + + MOVE_ACTION@P_M_ZERO@ARMED@CORE + MOVE_ACTION@P_M_ZERO@ARMED@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_ACTION@MP_FEMALE@ARMED@1H@TRANS + + MOVE_ACTION@P_M_ZERO@HOLSTER + UNHOLSTER_1H + + + + + + + + WEAPON_KLOG19FDE + + + + MOVE_STEALTH@P_M_ZERO@UNARMED@CORE + MOVE_STEALTH@P_M_ZERO@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_STEALTH@MP_FEMALE@1H@TRANS + + MOVE_STEALTH@P_M_ZERO@HOLSTER + UNHOLSTER_1H_STEALTH + + + + + + + + + + MICHAEL_ACTION + + + + + WEAPON_KLOG19FDE + + + + MOVE_ACTION@P_M_ZERO@ARMED@CORE + MOVE_ACTION@P_M_ZERO@ARMED@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_ACTION@P_M_ZERO@ARMED@1H@TRANS@A + + MOVE_ACTION@P_M_ZERO@HOLSTER + UNHOLSTER_1H + + + + + + + + WEAPON_KLOG19FDE + + + + MOVE_STEALTH@P_M_ZERO@UNARMED@CORE + MOVE_STEALTH@P_M_ZERO@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_STEALTH@P_M_ZERO@1H@TRANS@A + + MOVE_STEALTH@P_M_ZERO@HOLSTER + UNHOLSTER_1H_STEALTH + + + + + + + + + + FRANKLIN_ACTION + + + + + WEAPON_KLOG19FDE + + + + MOVE_ACTION@P_M_ONE@ARMED@CORE + MOVE_ACTION@P_M_ONE@ARMED@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_ACTION@P_M_ONE@ARMED@1H@TRANS@A + + MOVE_ACTION@P_M_ONE@HOLSTER + UNHOLSTER_1H + + + + + + + + WEAPON_KLOG19FDE + + + + MOVE_STEALTH@P_M_ONE@UNARMED@CORE + MOVE_STEALTH@P_M_ONE@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_STEALTH@P_M_ONE@1H@TRANS@A + + MOVE_STEALTH@P_M_ONE@HOLSTER + UNHOLSTER_1H_STEALTH + + + + + + + + + + TREVOR_ACTION + + + + + WEAPON_KLOG19FDE + + + + MOVE_ACTION@P_M_TWO@ARMED@CORE + MOVE_ACTION@P_M_TWO@ARMED@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_ACTION@P_M_TWO@ARMED@1H@TRANS@A + + MOVE_ACTION@P_M_TWO@HOLSTER + UNHOLSTER_1H + + + + + + + + WEAPON_KLOG19FDE + + + + MOVE_STEALTH@P_M_TWO@UNARMED@CORE + MOVE_STEALTH@P_M_TWO@1H@UPPER + UpperbodyAndIk_filter + + + + + + + MOVE_STEALTH@P_M_TWO@1H@TRANS@A + + MOVE_STEALTH@P_M_TWO@HOLSTER + UNHOLSTER_1H_STEALTH + + + + + + + + + + + diff --git a/resources/[jobs]/[weapons]/Klog19FDE/meta/weaponanimations.meta b/resources/[jobs]/[weapons]/Klog19FDE/meta/weaponanimations.meta new file mode 100644 index 000000000..fae79a217 --- /dev/null +++ b/resources/[jobs]/[weapons]/Klog19FDE/meta/weaponanimations.meta @@ -0,0 +1,347 @@ + + + + + + + + + + cover@move@ai@base@1h + Cover_Wpn_Pistol + weapons@pistol@ + BothArms_filter + + + + + weapons@pistol@combat_pistol + weapons@pistol@combat_pistol_str + Wpn_Pistol_Injured + weapons@pistol@combat_pistol@w_stealth + + + + + + combat_fire_variations_pistol + + combat_aim_turns_pistol + + melee@pistol@streamed_core + + + + + reaction@shellshock@unarmed + MOVE_JUMP@WEAPONS@PISTOL + MOVE_FALL@WEAPONS@PISTOL + weapons@pistol@ + RightArm_NoSpine_filter + RightArm_NoSpine_filter + + + + + + + Wpn_Thrown_Grenade_Aiming_Rifle + + + + + + Default + + + + + + + + + + + + + + + + weapons@pistol@combat_pistol@stealth + + + + + + combat_fire_variations_gang_pistol + + + + + + + + + + + + weapons@pistol@ + + + + + + + + + + + + + + + Default + + + move_m@generic + + + cover@move@ai@base@1h + Cover_FirstPerson_Wpn_Pistol + weapons@first_person@aim_idle@generic@pistol@shared@core + BothArms_filter + + + move_ped_strafing_stealth + + weapons@first_person@aim_idle@generic@pistol@shared@core + weapons@first_person@aim_rng@generic@pistol@combat_pistol@str + Wpn_Pistol_Injured + weapons@first_person@aim_stealth@generic@pistol@shared@core + + + + + + combat_fire_variations_pistol + + combat_aim_turns_pistol + + melee@pistol@streamed_core + + + + + reaction@shellshock@unarmed + MOVE_JUMP@WEAPONS@PISTOL + MOVE_FALL@WEAPONS@PISTOL + weapons@pistol@ + RightArm_NoSpine_filter + RightArm_NoSpine_filter + + + + + + + weapons@first_person@aim_rng@generic@pistol@shared@core + + + weapons@first_person@aim_rng@p_m_zero@pistol@shared@aim_trans@rng_to_idle + weapons@first_person@aim_lt@p_m_zero@pistol@shared@aim_trans@lt_to_idle + weapons@first_person@aim_scope@p_m_zero@pistol@shared@aim_trans@scope_to_idle + weapons@first_person@aim_idle@p_m_zero@pistol@shared@aim_trans@unholster_to_idle + weapons@first_person@aim_stealth@p_m_zero@pistol@shared@aim_trans@stealth_to_idle + weapons@first_person@aim_idle@p_m_zero@pistol@shared@aim_trans@idle_to_stealth + weapons@first_person@aim_stealth@p_m_zero@pistol@shared@aim_trans@unholster_to_stealth + + weapons@first_person@aim_idle@p_m_zero@pistol@shared@fidgets@a + weapons@first_person@aim_idle@p_m_zero@pistol@shared@fidgets@b + weapons@first_person@aim_idle@p_m_zero@pistol@shared@fidgets@c + + weapons@first_person@aim_idle@remote_clone@pistol@shared@core + + + + + Default + + + + + cover@move@ai@base@1h + Cover_FirstPerson_Wpn_Pistol + weapons@first_person@aim_rng@generic@pistol@shared@core + BothArms_filter + + + move_ped_strafing_stealth + + weapons@first_person@aim_lt@generic@pistol@combat_pistol@w_fire + weapons@first_person@aim_rng@generic@pistol@combat_pistol@str + Wpn_Pistol_Injured + weapons@first_person@aim_lt@generic@pistol@combat_pistol@w_fire + + + + + + combat_fire_variations_pistol + + combat_aim_turns_pistol + + melee@pistol@streamed_core + + + + + reaction@shellshock@unarmed + MOVE_JUMP@WEAPONS@PISTOL + MOVE_FALL@WEAPONS@PISTOL + weapons@pistol@ + RightArm_NoSpine_filter + RightArm_NoSpine_filter + + + + + + + weapons@first_person@aim_rng@generic@pistol@shared@core + + weapons@first_person@aim_idle@p_m_zero@pistol@shared@aim_trans@idle_to_lt + weapons@first_person@aim_rng@p_m_zero@pistol@shared@aim_trans@rng_to_lt + + weapons@first_person@aim_scope@p_m_zero@pistol@shared@aim_trans@scope_to_lt + weapons@first_person@aim_lt@p_m_zero@pistol@shared@aim_trans@unholster_to_lt + weapons@first_person@aim_stealth@p_m_zero@pistol@shared@aim_trans@stealth_to_lt + weapons@first_person@aim_lt@p_m_zero@pistol@shared@aim_trans@lt_to_stealth + + weapons@first_person@aim_lt@p_m_zero@pistol@shared@fidgets@a + weapons@first_person@aim_lt@p_m_zero@pistol@shared@fidgets@b + weapons@first_person@aim_lt@p_m_zero@pistol@shared@fidgets@c + weapons@first_person@aim_lt@p_m_zero@pistol@shared@fidgets@d + + + + + + Default + + + + + cover@move@ai@base@1h + Cover_FirstPerson_Wpn_Pistol + weapons@first_person@aim_rng@generic@pistol@shared@core + BothArms_filter + + + move_ped_strafing_stealth + + weapons@first_person@aim_rng@generic@pistol@combat_pistol@w_fire + weapons@first_person@aim_rng@generic@pistol@combat_pistol@str + Wpn_Pistol_Injured + weapons@first_person@aim_rng@generic@pistol@combat_pistol@w_fire + + + + + + combat_fire_variations_pistol + + combat_aim_turns_pistol + + melee@pistol@streamed_core + + + + + reaction@shellshock@unarmed + MOVE_JUMP@WEAPONS@PISTOL + MOVE_FALL@WEAPONS@PISTOL + weapons@pistol@ + RightArm_NoSpine_filter + RightArm_NoSpine_filter + + + + + + + weapons@first_person@aim_rng@generic@pistol@shared@core + + weapons@first_person@aim_idle@p_m_zero@pistol@shared@aim_trans@idle_to_rng + + weapons@first_person@aim_lt@p_m_zero@pistol@shared@aim_trans@lt_to_rng + weapons@first_person@aim_scope@p_m_zero@pistol@shared@aim_trans@scope_to_rng + weapons@first_person@aim_rng@p_m_zero@pistol@shared@aim_trans@unholster_to_rng + weapons@first_person@aim_stealth@p_m_zero@pistol@shared@aim_trans@stealth_to_rng + weapons@first_person@aim_rng@p_m_zero@pistol@shared@aim_trans@rng_to_stealth + + weapons@first_person@aim_rng@p_m_zero@pistol@shared@fidgets@a + weapons@first_person@aim_rng@p_m_zero@pistol@shared@fidgets@b + weapons@first_person@aim_rng@p_m_zero@pistol@shared@fidgets@c + + + + + + Default + + + + + cover@move@ai@base@1h + Cover_FirstPerson_Wpn_Pistol + weapons@first_person@aim_rng@generic@pistol@shared@core + BothArms_filter + + + move_ped_strafing_stealth + + weapons@first_person@aim_scope@generic@pistol@combat_pistol@w_fire + weapons@first_person@aim_rng@generic@pistol@combat_pistol@str + Wpn_Pistol_Injured + weapons@first_person@aim_scope@generic@pistol@combat_pistol@w_fire + + + + + + combat_fire_variations_pistol + + combat_aim_turns_pistol + + melee@pistol@streamed_core + + + + + reaction@shellshock@unarmed + MOVE_JUMP@WEAPONS@PISTOL + MOVE_FALL@WEAPONS@PISTOL + weapons@pistol@ + RightArm_NoSpine_filter + RightArm_NoSpine_filter + + + + + + + weapons@first_person@aim_rng@generic@pistol@shared@core + + weapons@first_person@aim_idle@p_m_zero@pistol@shared@aim_trans@idle_to_scope + weapons@first_person@aim_rng@p_m_zero@pistol@shared@aim_trans@rng_to_scope + weapons@first_person@aim_lt@p_m_zero@pistol@shared@aim_trans@lt_to_scope + + weapons@first_person@aim_scope@p_m_zero@pistol@shared@aim_trans@unholster_to_scope + weapons@first_person@aim_stealth@p_m_zero@pistol@shared@aim_trans@stealth_to_scope + weapons@first_person@aim_scope@p_m_zero@pistol@shared@aim_trans@scope_to_stealth + + + + + + diff --git a/resources/[jobs]/[weapons]/Klog19FDE/meta/weaponarchetypes.meta b/resources/[jobs]/[weapons]/Klog19FDE/meta/weaponarchetypes.meta new file mode 100644 index 000000000..e8f7961c2 --- /dev/null +++ b/resources/[jobs]/[weapons]/Klog19FDE/meta/weaponarchetypes.meta @@ -0,0 +1,19 @@ + + + + + + w_pi_klog19fde_mag1 + w_pi_klog19fde_mag1 + NULL + + + + w_pi_klog19fde + w_pi_klog19fde + NULL + + + + + diff --git a/resources/[jobs]/[weapons]/Klog19FDE/meta/weapons.meta b/resources/[jobs]/[weapons]/Klog19FDE/meta/weapons.meta new file mode 100644 index 000000000..c8034fa60 --- /dev/null +++ b/resources/[jobs]/[weapons]/Klog19FDE/meta/weapons.meta @@ -0,0 +1,283 @@ + + + + + + + + + SLOT_WEAPON_KLOG19FDE + + + + + + + + + WEAPON_KLOG19FDE + w_pi_klog19fde + + SLOT_WEAPON_KLOG19FDE + BULLET + + DONTCARE + DONTCARE + DONTCARE + DONTCARE + DONTCARE + DONTCARE + + INSTANT_HIT + WHEEL_PISTOL + GROUP_PISTOL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BONETAG_HEAD + + + + + BONETAG_NECK + + + + + BONETAG_L_THIGH + + + + + BONETAG_R_THIGH + + + + + BONETAG_L_CALF + + + + + BONETAG_R_CALF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WEAPON_EFFECT_GROUP_PISTOL_SMALL + muz_pistol + + muz_pistol_fp + + muz_smoking_barrel + muz_smoking_barrel_fp + + + + eject_pistol + eject_pistol_fp + bullet_tracer + BulletSmall + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + DEFAULT_THIRD_PERSON_PED_AIM_CAMERA + DEFAULT_THIRD_PERSON_PED_AIM_IN_COVER_CAMERA + + DEFAULT_THIRD_PERSON_PED_RUN_AND_GUN_CAMERA + DEFAULT_THIRD_PERSON_PED_CINEMATIC_SHOOTING_CAMERA + + + + + + + + + + + + + + + + + + + + + + + PISTOL_RECOIL_SHAKE + FPS_PISTOL_RECOIL_SHAKE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WEAPON_PISTOL + + PICKUP_WEAPON_COMBATPISTOL + PICKUP_AMMO_BULLET_MP + WEAPON_KLOG19FDE + MMI_1Handed + CMBTPISTOL + + + Normal + + + + CarriedInHand Gun CanLockonOnFoot CanLockonInVehicle CanFreeAim AnimReload AnimCrouchFire UsableOnFoot UsableClimbing UsableInCover AllowCloseQuarterKills HasLowCoverReloads HasLowCoverSwaps QuitTransitionToIdleIntroOnWeaponChange DisableLeftHandIkWhenOnFoot TorsoIKForWeaponBlock UseFPSAimIK UseFPSSecondaryMotion + + + + + + + + + + + + + + + + + + + + + + + + AR + + diff --git a/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde.ydr b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde.ydr new file mode 100644 index 000000000..95d7db7eb Binary files /dev/null and b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde.ydr differ diff --git a/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde.ytd b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde.ytd new file mode 100644 index 000000000..e1a59179a Binary files /dev/null and b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde.ytd differ diff --git a/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_hi.ydr b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_hi.ydr new file mode 100644 index 000000000..95d7db7eb Binary files /dev/null and b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_hi.ydr differ diff --git a/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_mag1.ydr b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_mag1.ydr new file mode 100644 index 000000000..a768ee00c Binary files /dev/null and b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_mag1.ydr differ diff --git a/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_mag1.ytd b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_mag1.ytd new file mode 100644 index 000000000..d6653de8a Binary files /dev/null and b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_mag1.ytd differ diff --git a/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_mag1_hi.ydr b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_mag1_hi.ydr new file mode 100644 index 000000000..a768ee00c Binary files /dev/null and b/resources/[jobs]/[weapons]/Klog19FDE/stream/w_pi_klog19fde_mag1_hi.ydr differ