mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-10 07:41:16 +01:00
71a232f03b
## About The Pull Request As title says, skin butchered from humans (currently only applies to lizardskin) now inherits their owner's skin color, and so do items (lizardskin boots and hats) made from it. Also this PR gagsifies lizardskin hats and boots for this very reason. ## Why It's Good For The Game Consistency, when you butcher a purple lizard you should get purple lizard boots. ## Changelog 🆑 add: Made lizard skin and lizardskin items inherit their "donor's" skin color /🆑
19 lines
775 B
Plaintext
19 lines
775 B
Plaintext
/obj/effect/spawner/random/animalhide
|
|
name = "animal hide spawner"
|
|
desc = "Fresh animal hide!"
|
|
icon_state = "animalhide"
|
|
loot = list(
|
|
/obj/item/stack/sheet/leather/five = 70,
|
|
/obj/item/stack/sheet/animalhide/corgi/five = 10,
|
|
/obj/item/stack/sheet/animalhide/cat/five = 10,
|
|
/obj/item/stack/sheet/animalhide/carbon/monkey/five = 10,
|
|
/obj/item/stack/sheet/animalhide/mothroach/five = 5,
|
|
/obj/item/stack/sheet/animalhide/carp/five = 5,
|
|
/obj/item/stack/sheet/sinew/wolf = 2,
|
|
/obj/item/stack/sheet/animalhide/goliath_hide/polar_bear_hide = 2,
|
|
/obj/item/stack/sheet/animalhide/xeno/five = 1,
|
|
/obj/item/stack/sheet/animalhide/carbon/lizard/five = 1,
|
|
/obj/item/stack/sheet/animalhide/carbon/human/five = 1,
|
|
/obj/item/stack/sheet/animalhide/gondola = 1,
|
|
)
|