mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-18 18:42:08 +01:00
Don't let the large file size scare you, it's just mostly splitting stuff into contained sprites and putting them in the correct place. Anyway, resprites most non-resprited devices in devices.dmi, and puts them in contained sprites. Also puts any related /obj/item/device into contained sprites too. That's basically the long and short of it.
13 lines
492 B
Plaintext
13 lines
492 B
Plaintext
/obj/item/research_slip
|
|
name = "research slip"
|
|
desc = "A small slip of plastic with an embedded chip. It is commonly used to store small amounts of research data."
|
|
desc_info = "This item is to be used in the destructive analyzer to gain research points."
|
|
icon = 'icons/obj/item/research_slip.dmi'
|
|
icon_state = "slip_nt"
|
|
contained_sprite = TRUE
|
|
|
|
/obj/item/research_slip/Initialize(mapload, var/list/research_levels)
|
|
. = ..()
|
|
if(length(research_levels))
|
|
origin_tech = research_levels
|