RADIATION SUITS icons added, need to do an update to commit the code, will be in the next revision.
SURGICAL APRON icons added Clothes now have a radiaiton_protection variable, altho only the suits are intended to make use of it. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1029 316c924e-a436-60f5-8080-3fe189b3f50e
@@ -15,7 +15,7 @@
|
||||
var/permeability_coefficient = 1 // for chemicals/diseases
|
||||
var/siemens_coefficient = 1 // for electrical admittance/conductance (electrocution checks and shit)
|
||||
var/slowdown = 0 // How much clothing is slowing you down. Negative values speeds you up
|
||||
|
||||
var/radiation_protection = 0.0 //percentage of radiation it will absorb
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -212,6 +212,23 @@
|
||||
icon_state = "firesuit"
|
||||
item_state = "firefighter"
|
||||
|
||||
/obj/item/clothing/suit/radiation
|
||||
name = "Radiation suit"
|
||||
desc = "A suit that protects against radiation."
|
||||
icon_state = "rad"
|
||||
item_state = "rad_suit"
|
||||
//w_class = 4//bulky item
|
||||
gas_transfer_coefficient = 0.01
|
||||
permeability_coefficient = 0.01
|
||||
heat_transfer_coefficient = 1
|
||||
radiation_protection = 1
|
||||
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|FEET|ARMS|HANDS
|
||||
slowdown = 1.3
|
||||
|
||||
protective_temperature = 4500
|
||||
heat_transfer_coefficient = 0.01
|
||||
allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/emergency_oxygen)
|
||||
|
||||
/obj/item/clothing/suit/fire/heavy
|
||||
name = "firesuit"
|
||||
desc = "A suit that protects against extreme fire and heat."
|
||||
@@ -238,6 +255,7 @@
|
||||
heat_transfer_coefficient = 0.02
|
||||
allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/emergency_oxygen)
|
||||
slowdown = 3
|
||||
radiation_protection = 0.25
|
||||
|
||||
/obj/item/clothing/suit/space/rig
|
||||
name = "rig suit"
|
||||
@@ -245,6 +263,7 @@
|
||||
icon_state = "rig"
|
||||
item_state = "rig_suit"
|
||||
slowdown = 2
|
||||
radiation_protection = 0.75
|
||||
|
||||
/obj/item/clothing/suit/space/syndicate
|
||||
name = "red space suit"
|
||||
|
||||
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 17 KiB |