mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 16:42:13 +00:00
Replaced all the snowflakey shuttle turfs with either /turf/simulated/wall/shuttle or /turf/simulated/floor/shuttle where I could, meaning shuttles are no longer indestructible but they can still take a lot of punishment.
Added a few unsimulated turf variants to use on the cc z-level rather than having to use their simulated counterparts.
Added smooth dark shuttle wall icons and a few more shuttle floor variants by AmoryBlaine.
Fixed the dark shuttle corner blocks from looking weird after transit.
A side effect of removing these shuttle turf types, conjure spells will now work inside of shuttles that used these removed turfs. Could perhaps be readded using areas if needed.
This is part 1 of the stuff from #5771 which will be split up and added in smaller batches beginning with adding the turf types with this pr.
87 lines
1.9 KiB
Plaintext
87 lines
1.9 KiB
Plaintext
/*
|
|
Immovable rod random event.
|
|
The rod will spawn at some location outside the station, and travel in a straight line to the opposite side of the station
|
|
Everything solid in the way will be ex_act()'d
|
|
In my current plan for it, 'solid' will be defined as anything with density == 1
|
|
|
|
--NEOFite
|
|
*/
|
|
|
|
/obj/effect/immovablerod
|
|
name = "Immovable Rod"
|
|
desc = "What the fuck is that?"
|
|
icon = 'icons/obj/objects.dmi'
|
|
icon_state = "immrod"
|
|
throwforce = 100
|
|
density = 1
|
|
anchored = 1
|
|
|
|
Collide(atom/clong)
|
|
. = ..()
|
|
if (istype(clong, /turf) && !istype(clong, /turf/unsimulated))
|
|
if(clong.density)
|
|
clong.ex_act(2)
|
|
for (var/mob/O in hearers(src, null))
|
|
O.show_message("CLANG", 2)
|
|
|
|
else if (istype(clong, /obj))
|
|
if(clong.density)
|
|
clong.ex_act(2)
|
|
for (var/mob/O in hearers(src, null))
|
|
O.show_message("CLANG", 2)
|
|
|
|
else if (istype(clong, /mob))
|
|
if(clong.density || prob(10))
|
|
clong.ex_act(2)
|
|
else
|
|
qdel(src)
|
|
|
|
if(clong && prob(25))
|
|
src.forceMove(clong.loc)
|
|
|
|
/proc/immovablerod()
|
|
var/startx = 0
|
|
var/starty = 0
|
|
var/endy = 0
|
|
var/endx = 0
|
|
var/startside = pick(cardinal)
|
|
|
|
switch(startside)
|
|
if(NORTH)
|
|
starty = 187
|
|
startx = rand(41, 199)
|
|
endy = 38
|
|
endx = rand(41, 199)
|
|
if(EAST)
|
|
starty = rand(38, 187)
|
|
startx = 199
|
|
endy = rand(38, 187)
|
|
endx = 41
|
|
if(SOUTH)
|
|
starty = 38
|
|
startx = rand(41, 199)
|
|
endy = 187
|
|
endx = rand(41, 199)
|
|
if(WEST)
|
|
starty = rand(38, 187)
|
|
startx = 41
|
|
endy = rand(38, 187)
|
|
endx = 199
|
|
|
|
//rod time!
|
|
var/obj/effect/immovablerod/immrod = new /obj/effect/immovablerod(locate(startx, starty, 1))
|
|
var/end = locate(endx, endy, 1)
|
|
spawn(0)
|
|
walk_towards(immrod, end,1)
|
|
sleep(1)
|
|
while (immrod)
|
|
if (isNotStationLevel(immrod.z))
|
|
immrod.z = pick(current_map.station_levels)
|
|
if(immrod.loc == end)
|
|
qdel(immrod)
|
|
sleep(10)
|
|
for(var/obj/effect/immovablerod/imm in world)
|
|
return
|
|
sleep(50)
|
|
command_announcement.Announce("What the fuck was that?!", "General Alert")
|