mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-11 15:15:32 +01:00
5325be90b1
* Start Adds starts active versions of barbed wire. Adds 'named from material' var. Fixes spears from defaulting to fragile if they're made with a butterfly knife. * Makes cautery properly stop bleeding * Adds Glass Wire Adds wire that cuts a limb, doing 12 damage and a surgical cut to the limb. This is blocked via thick clothing. * Combines traps & traps_vr * Update alien_alloy.dm Makes adminspawn object unobtainable * wip * wip * Fire Abber * awaw * housekeeeping * Glass * ye * Update fire.dm * whoops infinite glass * rando
11 lines
341 B
Plaintext
11 lines
341 B
Plaintext
/obj/random/aberration
|
|
name = "Random Abberation"
|
|
desc = "This is a random abberation."
|
|
icon = 'icons/obj/toy.dmi'
|
|
icon_state = "generic"
|
|
spawn_nothing_percentage = 25
|
|
|
|
/obj/random/aberration/item_to_spawn()
|
|
return pick(prob(15);/obj/effect/abstract/abberation/spawner/fire,
|
|
prob(15);/obj/effect/abstract/abberation/spawner/glass)
|