6ef421be42
* Renames a few variables. Also reorders fallback order again. Renames item_state to inhand_icon_state Renames mob_overlay_icon to worn_icon Renames mob_overlay_state to worn_icon_state worn_icon_state/mob_overlay_state now never gets used for inhands. * Fixes some comments * Fixes map issue * Restart lints * Properly resolves conflicts
14 lines
611 B
Plaintext
14 lines
611 B
Plaintext
/obj/item/stack/sheet/hot_ice
|
|
name = "hot ice"
|
|
icon_state = "hot-ice"
|
|
inhand_icon_state = "hot-ice"
|
|
singular_name = "hot ice"
|
|
icon = 'icons/obj/stack_objects.dmi'
|
|
custom_materials = list(/datum/material/hot_ice=MINERAL_MATERIAL_AMOUNT)
|
|
grind_results = list(/datum/reagent/toxin/plasma = 300)
|
|
material_type = /datum/material/hot_ice
|
|
|
|
/obj/item/stack/sheet/hot_ice/suicide_act(mob/living/carbon/user)
|
|
user.visible_message("<span class='suicide'>[user] begins licking \the [src]! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
|
return FIRELOSS//dont you kids know that stuff is toxic?
|