mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 22:18:27 +01:00
Fixes #9544
This commit is contained in:
@@ -2,18 +2,17 @@
|
||||
icon_state = "rgeneric"
|
||||
/turf/simulated/wall/r_wall/New(var/newloc)
|
||||
..(newloc, DEFAULT_WALL_MATERIAL,"plasteel") //3strong
|
||||
|
||||
/turf/simulated/wall/cult
|
||||
icon_state = "cult"
|
||||
/turf/simulated/wall/cult/New(var/newloc)
|
||||
..(newloc,"cult","cult2")
|
||||
|
||||
/turf/unsimulated/wall/cult
|
||||
name = "cult wall"
|
||||
desc = "Hideous images dance beneath the surface."
|
||||
icon = 'icons/turf/wall_masks.dmi'
|
||||
icon_state = "cult"
|
||||
|
||||
|
||||
/turf/simulated/wall/iron/New(var/newloc)
|
||||
..(newloc,"iron")
|
||||
/turf/simulated/wall/uranium/New(var/newloc)
|
||||
@@ -28,7 +27,6 @@
|
||||
..(newloc,"phoron")
|
||||
/turf/simulated/wall/sandstone/New(var/newloc)
|
||||
..(newloc,"sandstone")
|
||||
|
||||
/turf/simulated/wall/ironphoron/New(var/newloc)
|
||||
..(newloc,"iron","phoron")
|
||||
/turf/simulated/wall/golddiamond/New(var/newloc)
|
||||
@@ -38,6 +36,8 @@
|
||||
/turf/simulated/wall/sandstonediamond/New(var/newloc)
|
||||
..(newloc,"sandstone","diamond")
|
||||
|
||||
|
||||
/turf/simulated/wall/cult/New(var/newloc)
|
||||
..(newloc,"cult","cult2")
|
||||
// Kind of wondering if this is going to bite me in the butt.
|
||||
/turf/simulated/wall/voxshuttle/New(var/newloc)
|
||||
..(newloc,"voxalloy")
|
||||
/turf/simulated/wall/voxshuttle/attackby()
|
||||
return
|
||||
|
||||
@@ -348,6 +348,18 @@ var/list/name_to_material
|
||||
weight = 22
|
||||
stack_per_sheet = 3750
|
||||
|
||||
// Adminspawn only, do not let anyone get this.
|
||||
/material/voxalloy
|
||||
name = "voxalloy"
|
||||
display_name = "durable alloy"
|
||||
stack_type = null
|
||||
icon_colour = "#6C7364"
|
||||
integrity = 1200
|
||||
melting_point = 6000 // Hull plating.
|
||||
explosion_resistance = 200 // Hull plating.
|
||||
hardness = 500
|
||||
weight = 500
|
||||
|
||||
/material/wood
|
||||
name = "wood"
|
||||
stack_type = /obj/item/stack/material/wood
|
||||
|
||||
Reference in New Issue
Block a user