mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 02:13:06 +00:00
The "set internals" button of tank items now turn green when it's used as internals. Removed research scanner from drones (since cyborgs don't have it, it's more consistent) Removed the ignore_madkadjust mask var. The sechailer mask now has an adjust mask action button, so I removed the adjust verb that it was using. The item's action are now created on item/New() instead of trying to create it every time someone picks the item up. I split hud/action.dm, the datum/action stuff is now in the datum folder (/datum/action.dm), whereas the code for action buttons is kept in the hud folder under action_button.dm. Also I moved some /datum/action code that was in some files back into datum/action.dm where it belongs.
91 lines
3.0 KiB
Plaintext
91 lines
3.0 KiB
Plaintext
/obj/item/clothing/head/hardhat
|
|
name = "hard hat"
|
|
desc = "A piece of headgear used in dangerous working conditions to protect the head. Comes with a built-in flashlight."
|
|
icon_state = "hardhat0_yellow"
|
|
item_state = "hardhat0_yellow"
|
|
var/brightness_on = 4 //luminosity when on
|
|
var/on = 0
|
|
item_color = "yellow" //Determines used sprites: hardhat[on]_[item_color] and hardhat[on]_[item_color]2 (lying down sprite)
|
|
armor = list(melee = 15, bullet = 5, laser = 20,energy = 10, bomb = 20, bio = 10, rad = 20)
|
|
flags_inv = 0
|
|
actions_types = list(/datum/action/item_action/toggle_helmet_light)
|
|
burn_state = FIRE_PROOF
|
|
|
|
/obj/item/clothing/head/hardhat/attack_self(mob/user)
|
|
if(!isturf(user.loc))
|
|
user << "<span class='warning'>You cannot turn the light on while in this [user.loc]!</span>" //To prevent some lighting anomalities.
|
|
return
|
|
on = !on
|
|
icon_state = "hardhat[on]_[item_color]"
|
|
item_state = "hardhat[on]_[item_color]"
|
|
user.update_inv_head() //so our mob-overlays update
|
|
|
|
if(on)
|
|
turn_on(user)
|
|
else
|
|
turn_off(user)
|
|
for(var/X in actions)
|
|
var/datum/action/A = X
|
|
A.UpdateButtonIcon()
|
|
|
|
/obj/item/clothing/head/hardhat/pickup(mob/user)
|
|
..()
|
|
if(on)
|
|
user.AddLuminosity(brightness_on)
|
|
SetLuminosity(0)
|
|
|
|
/obj/item/clothing/head/hardhat/dropped(mob/user)
|
|
..()
|
|
if(on)
|
|
user.AddLuminosity(-brightness_on)
|
|
SetLuminosity(brightness_on)
|
|
|
|
/obj/item/clothing/head/hardhat/proc/turn_on(mob/user)
|
|
user.AddLuminosity(brightness_on)
|
|
|
|
/obj/item/clothing/head/hardhat/proc/turn_off(mob/user)
|
|
user.AddLuminosity(-brightness_on)
|
|
|
|
/obj/item/clothing/head/hardhat/orange
|
|
icon_state = "hardhat0_orange"
|
|
item_state = "hardhat0_orange"
|
|
item_color = "orange"
|
|
|
|
/obj/item/clothing/head/hardhat/red
|
|
icon_state = "hardhat0_red"
|
|
item_state = "hardhat0_red"
|
|
item_color = "red"
|
|
name = "firefighter helmet"
|
|
flags = STOPSPRESSUREDMAGE
|
|
heat_protection = HEAD
|
|
max_heat_protection_temperature = FIRE_HELM_MAX_TEMP_PROTECT
|
|
cold_protection = HEAD
|
|
min_cold_protection_temperature = FIRE_HELM_MIN_TEMP_PROTECT
|
|
|
|
/obj/item/clothing/head/hardhat/white
|
|
icon_state = "hardhat0_white"
|
|
item_state = "hardhat0_white"
|
|
item_color = "white"
|
|
flags = STOPSPRESSUREDMAGE
|
|
heat_protection = HEAD
|
|
max_heat_protection_temperature = FIRE_HELM_MAX_TEMP_PROTECT
|
|
cold_protection = HEAD
|
|
min_cold_protection_temperature = FIRE_HELM_MIN_TEMP_PROTECT
|
|
|
|
/obj/item/clothing/head/hardhat/dblue
|
|
icon_state = "hardhat0_dblue"
|
|
item_state = "hardhat0_dblue"
|
|
item_color = "dblue"
|
|
|
|
/obj/item/clothing/head/hardhat/atmos
|
|
icon_state = "hardhat0_atmos"
|
|
item_state = "hardhat0_atmos"
|
|
item_color = "atmos"
|
|
name = "atmospheric technician's firefighting helmet"
|
|
desc = "A firefighter's helmet, able to keep the user cool in any situation."
|
|
flags = STOPSPRESSUREDMAGE | THICKMATERIAL
|
|
flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR
|
|
heat_protection = HEAD
|
|
max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT
|
|
cold_protection = HEAD
|
|
min_cold_protection_temperature = FIRE_HELM_MIN_TEMP_PROTECT |