mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-05 22:43:46 +00:00
* Adds more bitrunning antagonists + fixes (READY) * Update role_preferences.dm * Update poll_ignore.dm * Update poll_ignore.dm * Update cyber_police.dm --------- Co-authored-by: Jeremiah <42397676+jlsnow301@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
14 lines
435 B
Plaintext
14 lines
435 B
Plaintext
/// Removes all the loot and achievements from megafauna for bitrunning related
|
|
/mob/living/simple_animal/hostile/megafauna/proc/make_virtual_megafauna()
|
|
var/new_max = clamp(maxHealth * 0.5, 600, 1300)
|
|
maxHealth = new_max
|
|
health = new_max
|
|
|
|
true_spawn = FALSE
|
|
|
|
loot.Cut()
|
|
loot += /obj/structure/closet/crate/secure/bitrunning/encrypted
|
|
|
|
crusher_loot.Cut()
|
|
crusher_loot += /obj/structure/closet/crate/secure/bitrunning/encrypted
|