mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
Refactors ore eating to facilitate the ethical consumption of refined materials, easily obtainable on station. Suggested by the kobolds. Also fixes the material name of Plastitanium glass throughout the codebase.
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
/obj/item/stack/material/titanium
|
|
icon = 'icons/obj/stacks_vr.dmi'
|
|
icon_state = "sheet-titanium"
|
|
no_variants = FALSE
|
|
|
|
/obj/fiftyspawner/titanium
|
|
name = "stack of titanium"
|
|
type_to_spawn = /obj/item/stack/material/titanium
|
|
|
|
/obj/item/stack/material/glass/titanium
|
|
name = "ti-glass sheets"
|
|
icon = 'icons/obj/stacks_vr.dmi'
|
|
icon_state = "sheet-titaniumglass"
|
|
item_state = "sheet-silver"
|
|
no_variants = FALSE
|
|
drop_sound = 'sound/items/drop/glass.ogg'
|
|
default_type = MAT_TITANIUMGLASS
|
|
|
|
/obj/fiftyspawner/titanium_glass
|
|
name = "stack of ti-glass"
|
|
type_to_spawn = /obj/item/stack/material/glass/titanium
|
|
|
|
/obj/item/stack/material/plastitanium
|
|
name = "plas-tanium sheets"
|
|
icon = 'icons/obj/stacks_vr.dmi'
|
|
icon_state = "sheet-plastitanium"
|
|
item_state = "sheet-silver"
|
|
no_variants = FALSE
|
|
default_type = MAT_PLASTITANIUM
|
|
|
|
/obj/fiftyspawner/plastitanium
|
|
name = "stack of plastitanium"
|
|
type_to_spawn = /obj/item/stack/material/plastitanium
|
|
|
|
/obj/item/stack/material/glass/plastitanium
|
|
name = "plas-tanium glass sheets"
|
|
icon = 'icons/obj/stacks_vr.dmi'
|
|
icon_state = "sheet-plastitaniumglass"
|
|
item_state = "sheet-silver"
|
|
no_variants = FALSE
|
|
drop_sound = 'sound/items/drop/glass.ogg'
|
|
default_type = MAT_PLASTITANIUMGLASS
|
|
|
|
/obj/fiftyspawner/plastitanium_glass
|
|
name = "stack of plastitanium glass"
|
|
type_to_spawn = /obj/item/stack/material/glass/plastitanium |