mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-28 06:28:01 +01:00
Makes material costs use sheets amount define (#19584)
* Material defines * Move these * Food sytnhetizer --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
w_class = ITEMSIZE_SMALL
|
||||
throw_speed = 5
|
||||
throw_range = 10
|
||||
matter = list(MAT_STEEL = 500, MAT_GLASS = 200)
|
||||
matter = list(MAT_STEEL = MATERIAL_COST(0.25), MAT_GLASS = MATERIAL_COST(0.1))
|
||||
var/mode = 1;
|
||||
pickup_sound = 'sound/items/pickup/device.ogg'
|
||||
drop_sound = 'sound/items/drop/device.ogg'
|
||||
|
||||
@@ -237,7 +237,7 @@
|
||||
name = "broken component"
|
||||
icon = 'icons/obj/robot_component.dmi'
|
||||
icon_state = "broken"
|
||||
matter = list(MAT_STEEL = 1000)
|
||||
matter = list(MAT_STEEL = MATERIAL_COST(0.5))
|
||||
|
||||
/obj/item/broken_device/random
|
||||
var/list/possible_icons = list("binradio_broken",
|
||||
|
||||
Reference in New Issue
Block a user