Adds shipbreaking to Icemeta (#22091)

* lord forgive me

* adds decals

* biome found the space drawer

* fucj

* fuck

god I hate mondayss

* adjustments made
This commit is contained in:
cowbot92
2024-05-25 20:03:59 -04:00
committed by GitHub
parent 1d678e2293
commit ed89601df4
3 changed files with 478 additions and 221 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -43,7 +43,7 @@
/area/template_noop)
"z" = (
/obj/machinery/door/airlock/abductor,
/turf/open/space/basic,
/turf/open/floor/plating/abductor,
/area/template_noop)
"A" = (
/obj/structure/table/optable/abductor,

View File

@@ -45,7 +45,10 @@
/obj/machinery/computer/shipbreaker/proc/area_clear_check()
for(var/turf/t in linked)
if(!isspaceturf(t))
if(((istype(t, /turf/open/floor/plating/snowed/smoothed))))
spawn_area_clear = TRUE
else if(!isspaceturf(t))
spawn_area_clear = FALSE
return
for(var/obj/s in linked)
@@ -57,7 +60,7 @@
/obj/machinery/computer/shipbreaker/proc/clear_floor_plating()
for(var/turf/t in linked)
if(isfloorturf(t))
if(((!istype(t, /turf/open/floor/plating/snowed/smoothed))))
t.ScrapeAway()