EFTPOS in Autolathe (#28205)

* EFTPOS in Autolathe

* Make EFTPOSes recyclable.
This commit is contained in:
Charlie Nolan
2025-02-10 03:01:34 +00:00
committed by GitHub
parent 3ff6a92476
commit 4e7b0e641c
4 changed files with 13 additions and 2 deletions
@@ -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"
+1 -1
View File
@@ -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