1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-18 21:52:24 +02:00
parent 860d27e06f
commit 015ab686fa
6 changed files with 46 additions and 3 deletions

View file

@ -2791,6 +2791,15 @@ CodeStudio.Products = {
itemPrice = 400,
itemInfo = "",
},
['empty_card'] = {
itemName = "leere Keycard",
itemStock = 50,
itemPrice = 200,
itemInfo = "",
},
}
} ,

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

View file

@ -7604,7 +7604,7 @@ itemsData = {
description = 'A can full of Fuel',
image = 'jerry_can.png',
shouldClose = true,
label = 'Jerrycan 20L',
label = 'Benzinkansiter',
name = 'jerry_can',
},
raw_sausages = {
@ -10472,7 +10472,7 @@ itemsData = {
type = 'item',
description = '',
weight = 100,
label = 'Ammoniak',
label = 'flüssiges Ammoniak',
unique = true,
useable = false,
image = 'ammoniak.png',
@ -10494,10 +10494,44 @@ itemsData = {
type = 'item',
description = '',
weight = 100,
label = 'Kokapaste',
label = 'Kokain Paste',
unique = true,
useable = false,
image = 'coke_paste.png',
name = 'coke_paste',
},
labor_card = {
shouldClose = true,
type = 'item',
description = '',
weight = 100,
label = 'Labor Keycard',
unique = true,
useable = false,
image = 'labor_card.png',
name = 'labor_card',
},
coke = {
shouldClose = true,
type = 'item',
description = '',
weight = 100,
label = 'Kokain',
unique = true,
useable = false,
image = 'coke.png',
name = 'coke',
},
empty_card = {
shouldClose = true,
type = 'item',
description = '',
weight = 100,
label = 'Leere Keycard',
unique = true,
useable = false,
image = 'empty_card.png',
name = 'empty_card',
},
}