Merge pull request #9821 from mwerezak/tableshaveturned

Makes standard tables plastic, related changes
This commit is contained in:
Zuhayr
2015-06-17 14:35:22 +09:30
9 changed files with 379 additions and 360 deletions
+8 -1
View File
@@ -292,6 +292,7 @@ var/list/name_to_material
/material/steel
name = DEFAULT_WALL_MATERIAL
stack_type = /obj/item/stack/material/steel
integrity = 150
icon_base = "solid"
icon_reinf = "reinf_over"
icon_colour = "#666666"
@@ -305,7 +306,7 @@ var/list/name_to_material
/material/plasteel
name = "plasteel"
stack_type = /obj/item/stack/material/plasteel
integrity = 800
integrity = 400
melting_point = 6000
icon_base = "solid"
icon_reinf = "reinf_over"
@@ -456,6 +457,12 @@ var/list/name_to_material
weight = 12
stack_origin_tech = "materials=3"
/material/plastic/holographic
name = "holographic plastic"
display_name = "plastic"
stack_type = null
shard_type = SHARD_NONE
/material/osmium
name = "osmium"
stack_type = /obj/item/stack/material/osmium
+17 -9
View File
@@ -1,19 +1,19 @@
/obj/structure/table
standard
icon_state = "plain_preview"
color = "#EEEEEE"
New()
material = get_material_by_name(DEFAULT_TABLE_MATERIAL)
..()
steel
icon_state = "plain_preview"
color = "#666666"
New()
material = get_material_by_name(DEFAULT_WALL_MATERIAL)
..()
plastic
icon_state = "plain_preview"
color = "#EEEEEE"
New()
material = get_material_by_name("plastic")
..()
marble
icon_state = "stone_preview"
color = "#CCCCCC"
@@ -22,6 +22,14 @@
..()
reinforced
icon_state = "reinf_preview"
color = "#EEEEEE"
New()
material = get_material_by_name(DEFAULT_TABLE_MATERIAL)
reinforced = get_material_by_name(DEFAULT_WALL_MATERIAL)
..()
steel_reinforced
icon_state = "reinf_preview"
color = "#666666"
New()
@@ -53,9 +61,9 @@
holotable
icon_state = "holo_preview"
color = "#666666"
color = "#EEEEEE"
New()
material = get_material_by_name("holographic [DEFAULT_WALL_MATERIAL]")
material = get_material_by_name("holographic [DEFAULT_TABLE_MATERIAL]")
..()
woodentable/holotable