mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-29 02:51:41 +00:00
* Merge pull request #53020 from Qustinnus/fatgrowing [READY] Vatgrowing: Third time's the charm * [READY] Vatgrowing: Third time's the charm Co-authored-by: 81Denton <32391752+81Denton@users.noreply.github.com>
16 lines
719 B
Plaintext
16 lines
719 B
Plaintext
///This spawner can spawn either a swabbable or non-swabble decal, the purpose of this is provide swabbing spots that cannot be rushed every round using map knowledge.
|
|
/obj/effect/spawner/lootdrop/gross_decal_spawner
|
|
name = "gross decal spawner"
|
|
icon_state = "random_trash"
|
|
loot = list(
|
|
/obj/effect/decal/cleanable/garbage = 15,
|
|
/obj/effect/decal/cleanable/vomit/old = 15,
|
|
/obj/effect/decal/cleanable/blood/gibs/old = 15,
|
|
/obj/effect/decal/cleanable/insectguts = 5,
|
|
/obj/effect/decal/cleanable/greenglow/ecto = 5,
|
|
/obj/effect/decal/cleanable/wrapping = 5,
|
|
/obj/effect/decal/cleanable/plastic = 5,
|
|
/obj/effect/decal/cleanable/glass = 5,
|
|
/obj/effect/decal/cleanable/dirt = 30
|
|
)
|