Add decals to walls banned neighbors (#26849)

* Remove fungus decal from walls

* Remove dirt under walls on maps

* Clean more dirt

* Use new random spawners for fungus frequent

* Replace old fungus spawners with new one

* Resolve conflict
This commit is contained in:
Aylong
2024-10-01 17:31:47 +00:00
committed by GitHub
parent f2efdcf92c
commit 0f5d71b19c
18 changed files with 293 additions and 466 deletions
@@ -112,20 +112,3 @@
result = list(
/datum/nothing = 7,
/obj/effect/decal/cleanable/dirt = 1)
/obj/effect/spawner/random_spawners/fungus_maybe
name = "fungus maybe"
icon_state = "fungus"
color = "#D5820B"
result = list(
/datum/nothing = 7,
/obj/effect/decal/cleanable/fungus = 1)
/obj/effect/spawner/random_spawners/fungus_probably
name = "fungus probably"
icon_state = "fungus"
color = "#D5820B"
result = list(
/datum/nothing = 1,
/obj/effect/decal/cleanable/fungus = 7)
@@ -0,0 +1,13 @@
/obj/effect/spawner/random/fungus
icon_state = "fungus"
color = "#D5820B"
loot = list(/obj/effect/decal/cleanable/fungus)
/obj/effect/spawner/random/fungus/maybe
spawn_loot_chance = 15
/obj/effect/spawner/random/fungus/frequent
spawn_loot_chance = 50
/obj/effect/spawner/random/fungus/probably
spawn_loot_chance = 85