ed
This commit is contained in:
parent
5e498ae29e
commit
650ff8db20
4 changed files with 39 additions and 7 deletions
|
|
@ -1011,8 +1011,18 @@ CodeStudio.Products = {
|
||||||
itemPrice = 250,
|
itemPrice = 250,
|
||||||
itemInfo = "",
|
itemInfo = "",
|
||||||
},
|
},
|
||||||
|
['ammo_beanbag'] = {
|
||||||
|
itemName = "Beanbag Munition",
|
||||||
|
itemStock = 250,
|
||||||
|
itemPrice = 250,
|
||||||
|
itemInfo = "",
|
||||||
|
},
|
||||||
|
['ammo_training'] = {
|
||||||
|
itemName = "Trainings Munition",
|
||||||
|
itemStock = 250,
|
||||||
|
itemPrice = 250,
|
||||||
|
itemInfo = "",
|
||||||
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,18 @@ config.ammo = {
|
||||||
ammo = 30, -- Only works on ammoSystem 1
|
ammo = 30, -- Only works on ammoSystem 1
|
||||||
maxAmmoInWeapon = 250 -- 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
|
-- POLICE
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -3636,9 +3636,20 @@ itemsData = {
|
||||||
description = 'Munition für die Beanbag Shotgun',
|
description = 'Munition für die Beanbag Shotgun',
|
||||||
image = 'beanbag_ammo.png',
|
image = 'beanbag_ammo.png',
|
||||||
shouldClose = true,
|
shouldClose = true,
|
||||||
label = 'Beanbag Ammo',
|
label = 'Beanbag Munition',
|
||||||
name = 'ammo_beanbag',
|
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 = {
|
burrito = {
|
||||||
useable = true,
|
useable = true,
|
||||||
weight = 100,
|
weight = 100,
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue