mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-08 08:23:49 +00:00
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
/datum/material/stone
|
|
name = "sandstone"
|
|
stack_type = /obj/item/stack/material/sandstone
|
|
icon_base = "stone"
|
|
icon_reinf = "reinf_stone"
|
|
icon_colour = "#D9C179"
|
|
shard_type = SHARD_STONE_PIECE
|
|
weight = 22
|
|
hardness = 55
|
|
protectiveness = 5 // 20%
|
|
conductive = 0
|
|
conductivity = 5
|
|
door_icon_base = "stone"
|
|
sheet_singular_name = "brick"
|
|
sheet_plural_name = "bricks"
|
|
|
|
/datum/material/stone/generate_recipes()
|
|
..()
|
|
recipes += new /datum/stack_recipe("planting bed", /obj/machinery/portable_atmospherics/hydroponics/soil, 3, time = 10, one_per_turf = 1, on_floor = 1, recycle_material = "[name]")
|
|
|
|
/datum/material/stone/marble
|
|
name = "marble"
|
|
icon_colour = "#AAAAAA"
|
|
weight = 26
|
|
hardness = 30 //VOREStation Edit - Please.
|
|
integrity = 201 //hack to stop kitchen benches being flippable, todo: refactor into weight system
|
|
stack_type = /obj/item/stack/material/marble
|
|
supply_conversion_value = 2
|
|
|
|
/datum/material/stone/marble/generate_recipes()
|
|
..()
|
|
recipes += list(
|
|
new /datum/stack_recipe("light marble floor tile", /obj/item/stack/tile/wmarble, 1, 4, 20, recycle_material = "[name]"),
|
|
new /datum/stack_recipe("dark marble floor tile", /obj/item/stack/tile/bmarble, 1, 4, 20, recycle_material = "[name]")
|
|
) |