mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
EFTPOS in Autolathe (#28205)
* EFTPOS in Autolathe * Make EFTPOSes recyclable.
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
icon = 'icons/obj/device.dmi'
|
||||
icon_state = "eftpos"
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
materials = list(MAT_METAL = 300, MAT_GLASS = 140)
|
||||
/// Unique identifying name of this EFTPOS for transaction tracking in money accounts
|
||||
var/machine_name = ""
|
||||
/// Whether or not the EFTPOS is locked into a transaction
|
||||
@@ -252,6 +253,7 @@
|
||||
throw_range = 7
|
||||
anchored = TRUE
|
||||
w_class = WEIGHT_CLASS_BULKY
|
||||
materials = list()
|
||||
hitsound = 'sound/weapons/ringslam.ogg'
|
||||
drop_sound = 'sound/items/handling/register_drop.ogg'
|
||||
pickup_sound = 'sound/items/handling/toolbox_pickup.ogg'
|
||||
|
||||
@@ -186,6 +186,7 @@
|
||||
materials = list(MAT_METAL = 500, MAT_GLASS = 500)
|
||||
build_path = /obj/item/clothing/ears/earmuffs
|
||||
category = list("initial", "Miscellaneous")
|
||||
|
||||
/datum/design/painter
|
||||
name = "Modular Painter"
|
||||
id = "mod_painter"
|
||||
@@ -194,6 +195,14 @@
|
||||
build_path = /obj/item/painter
|
||||
category = list("initial", "Miscellaneous")
|
||||
|
||||
/datum/design/eftpos
|
||||
name = "EFTPOS"
|
||||
id = "eftpos"
|
||||
build_type = AUTOLATHE
|
||||
materials = list(MAT_METAL = 300, MAT_GLASS = 140)
|
||||
build_path = /obj/item/eftpos
|
||||
category = list("initial","Miscellaneous")
|
||||
|
||||
/datum/design/metal
|
||||
name = "Metal"
|
||||
id = "metal"
|
||||
|
||||
@@ -123,7 +123,7 @@ export const Autolathe = (props, context) => {
|
||||
})
|
||||
}
|
||||
>
|
||||
{toTitleCase(recipe.name)}
|
||||
{recipe.name}
|
||||
</Button>
|
||||
{recipe.max_multiplier >= 10 && (
|
||||
<Button
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user