mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 20:52:41 +00:00
Create cloth_ch.dm
This commit is contained in:
67
code/modules/materials/materials/organic/cloth_ch.dm
Normal file
67
code/modules/materials/materials/organic/cloth_ch.dm
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
//Red Color Fix
|
||||||
|
/datum/material/cloth_red
|
||||||
|
name = "carpet" //This is the easiest fix but god do i hate it -shark
|
||||||
|
display_name = "red"
|
||||||
|
use_name = "red cloth"
|
||||||
|
icon_colour = "#DA020A"
|
||||||
|
flags = MATERIAL_PADDING
|
||||||
|
ignition_point = T0C+232
|
||||||
|
melting_point = T0C+300
|
||||||
|
protectiveness = 1 // 4%
|
||||||
|
conductive = 0
|
||||||
|
|
||||||
|
//CARPET materials
|
||||||
|
|
||||||
|
/datum/material/carpet
|
||||||
|
name = MAT_CARPET
|
||||||
|
display_name = "comfy"
|
||||||
|
use_name = "upholstery"
|
||||||
|
icon_colour = "#DB2626"
|
||||||
|
flags = MATERIAL_PADDING
|
||||||
|
stack_type = /obj/item/stack/tile/carpet
|
||||||
|
ignition_point = T0C+232
|
||||||
|
melting_point = T0C+300
|
||||||
|
sheet_singular_name = "tile"
|
||||||
|
sheet_plural_name = "tiles"
|
||||||
|
protectiveness = 1 // 4%
|
||||||
|
conductive = 0
|
||||||
|
|
||||||
|
/datum/material/carpet/teal
|
||||||
|
name = MAT_CARPET_TEAL
|
||||||
|
icon_colour = "#007575"
|
||||||
|
stack_type = /obj/item/stack/tile/carpet/teal
|
||||||
|
|
||||||
|
/datum/material/carpet/bcarpet
|
||||||
|
name = MAT_CARPET_BLACK
|
||||||
|
icon_colour = "#1B171E"
|
||||||
|
stack_type = /obj/item/stack/tile/carpet/bcarpet
|
||||||
|
|
||||||
|
/datum/material/carpet/blucarpet
|
||||||
|
name = MAT_CARPET_BLUE
|
||||||
|
icon_colour = "#122CDF"
|
||||||
|
stack_type = /obj/item/stack/tile/carpet/blucarpet
|
||||||
|
|
||||||
|
/datum/material/carpet/turcarpet
|
||||||
|
name = MAT_CARPET_TURQUOISE
|
||||||
|
icon_colour = "#41A997"
|
||||||
|
stack_type = /obj/item/stack/tile/carpet/turcarpet
|
||||||
|
|
||||||
|
/datum/material/carpet/sblucarpet
|
||||||
|
name = MAT_CARPET_SILVERBLUE
|
||||||
|
icon_colour = "#547EC6"
|
||||||
|
stack_type = /obj/item/stack/tile/carpet/sblucarpet
|
||||||
|
|
||||||
|
/datum/material/carpet/gaycarpet
|
||||||
|
name = MAT_CARPET_PINK
|
||||||
|
icon_colour = "#E12C87"
|
||||||
|
stack_type = /obj/item/stack/tile/carpet/gaycarpet
|
||||||
|
|
||||||
|
/datum/material/carpet/purcarpet
|
||||||
|
name = MAT_CARPET_PURPLE
|
||||||
|
icon_colour = "#B500A6"
|
||||||
|
stack_type = /obj/item/stack/tile/carpet/purcarpet
|
||||||
|
|
||||||
|
/datum/material/carpet/oracarpet
|
||||||
|
name = MAT_CARPET_ORANGE
|
||||||
|
icon_colour = "#D1D000"
|
||||||
|
stack_type = /obj/item/stack/tile/carpet/oracarpet
|
||||||
Reference in New Issue
Block a user