Merge pull request #10432 from Very-Soft/ionengineuwu

New Ion engine sprite
This commit is contained in:
Aronai Sieyes
2021-05-26 21:09:22 -04:00
committed by GitHub
2 changed files with 6 additions and 2 deletions
@@ -37,8 +37,8 @@
/obj/machinery/ion_engine
name = "ion propulsion device"
desc = "An advanced ion propulsion device, using energy and minutes amount of gas to generate thrust."
icon = 'icons/turf/shuttle_parts.dmi'
icon_state = "nozzle"
icon = 'icons/turf/shuttle_parts_vr.dmi' // VOREStation Edit - New icons
icon_state = "ion" // VOREStation Edit - New icons
power_channel = ENVIRON
idle_power_usage = 100
anchored = TRUE
@@ -53,6 +53,10 @@
. = ..()
controller = new(src)
var/image/i = image('icons/turf/shuttle_parts_vr.dmi', "ion_overlay") // VOREStation Edit
i.plane = PLANE_LIGHTING_ABOVE // VOREStation Edit
add_overlay(i) // VOREStation Edit
/obj/machinery/ion_engine/Destroy()
QDEL_NULL(controller)
. = ..()