Files

33 lines
785 B
Plaintext

/datum/prototype/material/lead
name = MAT_LEAD
id = MAT_LEAD
stack_type = /obj/item/stack/material/lead
icon_colour = "#273956"
sheet_singular_name = "ingot"
sheet_plural_name = "ingots"
tgui_icon_key = "ingots"
worth = 5
relative_integrity = 1
density = 8 * 3
relative_conductivity = 0.3
relative_permeability = 0
relative_reactivity = 0.5
hardness = MATERIAL_RESISTANCE_LOW
toughness = MATERIAL_RESISTANCE_MODERATE
refraction = MATERIAL_RESISTANCE_LOW
absorption = MATERIAL_RESISTANCE_MODERATE
nullification = MATERIAL_RESISTANCE_LOW
material_constraints = MATERIAL_CONSTRAINT_RIGID
/datum/prototype/material/lead/generate_recipes()
. = ..()
. += create_stack_recipe_datum(
name = "metal rod",
product = /obj/item/stack/rods,
cost = 1,
amount = 2
)