mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-20 04:34:32 +01:00
Use material defines more
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
product = /obj/item/stack/material/plasteel
|
||||
|
||||
/datum/alloy/steel
|
||||
metaltag = DEFAULT_WALL_MATERIAL
|
||||
metaltag = MAT_STEEL
|
||||
requires = list(
|
||||
"carbon" = 1,
|
||||
"hematite" = 1
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
icon_state = "deep_scan_device"
|
||||
item_state = "electronic"
|
||||
origin_tech = list(TECH_MAGNET = 1, TECH_ENGINEERING = 1)
|
||||
matter = list(DEFAULT_WALL_MATERIAL = 150)
|
||||
matter = list(MAT_STEEL = 150)
|
||||
var/scan_time = 2 SECONDS
|
||||
var/range = 2
|
||||
var/exact = FALSE
|
||||
@@ -74,7 +74,7 @@
|
||||
desc = "An advanced device used to locate ore deep underground."
|
||||
description_info = "This scanner has variable range, you can use the Set Scanner Range verb, or alt+click the device. Drills dig in 5x5."
|
||||
origin_tech = list(TECH_MAGNET = 4, TECH_ENGINEERING = 4)
|
||||
matter = list(DEFAULT_WALL_MATERIAL = 150)
|
||||
matter = list(MAT_STEEL = 150)
|
||||
scan_time = 0.5 SECONDS
|
||||
exact = TRUE
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
icon_state = "pickaxe"
|
||||
item_state = "jackhammer"
|
||||
w_class = ITEMSIZE_LARGE
|
||||
matter = list(DEFAULT_WALL_MATERIAL = 3750)
|
||||
matter = list(MAT_STEEL = 3750)
|
||||
var/digspeed = 40 //moving the delay to an item var so R&D can make improved picks. --NEO
|
||||
var/sand_dig = FALSE // does this thing dig sand?
|
||||
origin_tech = list(TECH_MATERIAL = 1, TECH_ENGINEERING = 1)
|
||||
@@ -122,7 +122,7 @@
|
||||
item_state = "shovel"
|
||||
w_class = ITEMSIZE_NORMAL
|
||||
origin_tech = list(TECH_MATERIAL = 1, TECH_ENGINEERING = 1)
|
||||
matter = list(DEFAULT_WALL_MATERIAL = 50)
|
||||
matter = list(MAT_STEEL = 50)
|
||||
attack_verb = list("bashed", "bludgeoned", "thrashed", "whacked")
|
||||
sharp = 0
|
||||
edge = 1
|
||||
|
||||
@@ -202,7 +202,7 @@ GLOBAL_LIST_EMPTY(unique_deployable)
|
||||
icon_state = "table"
|
||||
|
||||
/obj/structure/table/survival_pod/New()
|
||||
material = get_material_by_name(DEFAULT_WALL_MATERIAL)
|
||||
material = get_material_by_name(MAT_STEEL)
|
||||
verbs -= /obj/structure/table/verb/do_flip
|
||||
verbs -= /obj/structure/table/proc/do_put
|
||||
..()
|
||||
@@ -253,7 +253,7 @@ GLOBAL_LIST_EMPTY(unique_deployable)
|
||||
icon_state = "bed"
|
||||
|
||||
/obj/structure/bed/pod/New(var/newloc)
|
||||
..(newloc,DEFAULT_WALL_MATERIAL,"cotton")
|
||||
..(newloc,MAT_STEEL,"cotton")
|
||||
|
||||
//Survival Storage Unit
|
||||
/obj/machinery/smartfridge/survival_pod
|
||||
|
||||
Reference in New Issue
Block a user