mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-25 17:51:17 +00:00
And holy shit it's fast Conflicts: baystation12.dme code/ATMOSPHERICS/pipes.dm code/game/machinery/Sleeper.dm code/game/machinery/rechargestation.dm code/game/objects/structures/crates_lockers/crates.dm code/game/objects/structures/tables_racks.dm code/modules/mining/mine_turfs.dm code/modules/paperwork/photocopier.dm code/modules/power/cable.dm html/changelog.html
29 lines
338 B
Plaintext
29 lines
338 B
Plaintext
obj/structure
|
|
icon = 'icons/obj/structures.dmi'
|
|
|
|
obj/structure/blob_act()
|
|
if(prob(50))
|
|
del(src)
|
|
|
|
obj/structure/ex_act(severity)
|
|
switch(severity)
|
|
if(1.0)
|
|
qdel(src)
|
|
return
|
|
if(2.0)
|
|
if(prob(50))
|
|
qdel(src)
|
|
return
|
|
if(3.0)
|
|
return
|
|
|
|
obj/structure/meteorhit(obj/O as obj)
|
|
del(src)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|