modules misc (#18315)

This commit is contained in:
KalevTait
2022-07-20 22:56:34 +02:00
committed by GitHub
parent 234a471cf9
commit 938135f3d8
48 changed files with 214 additions and 214 deletions
+2 -2
View File
@@ -29,8 +29,8 @@
/obj/machinery/bsa
icon = 'icons/obj/machines/particle_accelerator.dmi'
density = 1
anchored = 1
density = TRUE
anchored = TRUE
/obj/machinery/bsa/back
name = "Bluespace Artillery Generator"
+4 -4
View File
@@ -130,8 +130,8 @@ GLOBAL_LIST_INIT(non_simple_animals, typecacheof(list(/mob/living/carbon/human/m
/obj/structure/filler
name = "big machinery part"
density = 1
anchored = 1
density = TRUE
anchored = TRUE
invisibility = 101
var/obj/machinery/parent
@@ -147,8 +147,8 @@ GLOBAL_LIST_INIT(non_simple_animals, typecacheof(list(/mob/living/carbon/human/m
desc = "Break glass in case of apocalypse."
icon = 'icons/obj/machines/dna_vault.dmi'
icon_state = "vault"
density = 1
anchored = 1
density = TRUE
anchored = TRUE
idle_power_usage = 5000
pixel_x = -32
pixel_y = -64
+4 -4
View File
@@ -103,7 +103,7 @@
icon_state = "sat_inactive"
var/mode = "NTPROBEV0.8"
var/active = FALSE
density = 1
density = TRUE
use_power = FALSE
var/static/gid = 0
var/id = 0
@@ -130,10 +130,10 @@
active = !active
if(active)
animate(src, pixel_y = 2, time = 10, loop = -1)
anchored = 1
anchored = TRUE
else
animate(src, pixel_y = 0, time = 10)
anchored = 0
anchored = FALSE
update_icon()
return TRUE
@@ -196,6 +196,6 @@
/obj/machinery/satellite/meteor_shield/emag_act(mob/user)
if(!emagged)
to_chat(user, "<span class='danger'>You override the shield's circuits, causing it to attract meteors instead of destroying them.</span>")
emagged = 1
emagged = TRUE
if(active)
change_meteor_chance(2)