This commit is contained in:
Nordi98 2025-07-19 22:06:32 +02:00
parent 5e498ae29e
commit 650ff8db20
4 changed files with 39 additions and 7 deletions

View file

@ -1011,8 +1011,18 @@ CodeStudio.Products = {
itemPrice = 250,
itemInfo = "",
},


['ammo_beanbag'] = {
itemName = "Beanbag Munition",
itemStock = 250,
itemPrice = 250,
itemInfo = "",
},
['ammo_training'] = {
itemName = "Trainings Munition",
itemStock = 250,
itemPrice = 250,
itemInfo = "",
},

}
},

View file

@ -68,7 +68,18 @@ config.ammo = {
ammo = 30, -- Only works on ammoSystem 1
maxAmmoInWeapon = 250 -- Only works on ammoSystem 1
},

{
ammoType = "AMMO_BEANBAG",
item = "ammo_beanbag",
ammo = 30, -- Only works on ammoSystem 1
maxAmmoInWeapon = 250 -- Only works on ammoSystem 1
},
{
ammoType = "AMMO_TRAINING",
item = "ammo_training",
ammo = 30, -- Only works on ammoSystem 1
maxAmmoInWeapon = 250 -- Only works on ammoSystem 1
},

-- POLICE
{

View file

@ -3636,9 +3636,20 @@ itemsData = {
description = 'Munition für die Beanbag Shotgun',
image = 'beanbag_ammo.png',
shouldClose = true,
label = 'Beanbag Ammo',
label = 'Beanbag Munition',
name = 'ammo_beanbag',
},
ammo_training = {
useable = true,
weight = 100,
type = 'item',
unique = false,
description = 'Munition für die Trainingwaffen',
image = 'training_ammo.png',
shouldClose = true,
label = 'Trainings Munition',
name = 'ammo_training',
},
burrito = {
useable = true,
weight = 100,

File diff suppressed because one or more lines are too long