Files
VOREStation/code/modules/vore/fluffstuff/custom_mecha_vr.dm
T
Kashargul 46bea7cfa2 Initialize fixing (#17279)
* Initialoize fixing

* diff fix

* add init grep test

* fixed missed ones

* .

* some more

* ,
2025-03-08 13:59:29 -05:00

21 lines
727 B
Plaintext

/obj/mecha/combat/phazon/scree
desc = "A very, very shiny exosuit. This thing has been polished and waxed practically to a mirror finish."
name = "Scuttlebug"
icon_state = "scuttlebug"
initial_icon = "scuttlebug"
wreckage = /obj/effect/decal/mecha_wreckage/phazon/scree
icon = 'icons/mecha/mecha_vr.dmi'
/obj/mecha/combat/phazon/scree/Initialize(mapload)
. = ..()
var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/weapon/energy/taser
ME.attach(src)
ME = new /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay
ME.attach(src)
/obj/effect/decal/mecha_wreckage/phazon/scree
name = "Scuttlebug wreckage"
icon_state = "scuttlebug-broken"
icon = 'icons/mecha/mecha_vr.dmi'