mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-25 05:51:56 +01:00
Continued from #19839 > Part 1 of a refactor to try and make our various fabricators use the same system and basic code. This adds the microlathe as a proof of concept to the whole refactor, ported from Baystation. Currently not mapped anywhere. > This also ports over Nebula's autolathe working sound, however it is adapted to fit our code. As such, I went to the original sound and re-cut it, now including start and stop sounds. Plan is overall to make it much easier to add new types of fabricators. ### Asset Licenses The following assets that **have not** been created by myself are included in this PR: | Path | Original Author | License | | --- | --- | --- | | icons/obj/machinery/fabricators/microlathe.dmi | [BloodyMan](https://github.com/BloodyMan) (Baystation 12) | CC-BY-SA | | sound/machines/fabricators/autolathe/ | [pencilina](https://freesound.org/people/pencilina/) | CC-0 | --------- Co-authored-by: Cody Brittain <cbrittain10@live.com>
29 lines
796 B
Plaintext
29 lines
796 B
Plaintext
ABSTRACT_TYPE(/singleton/fabricator_recipe/materials)
|
|
name = "Abstract Materials"
|
|
category = "Materials"
|
|
is_stack = TRUE
|
|
|
|
/singleton/fabricator_recipe/materials/metal
|
|
name = "steel sheets"
|
|
path = /obj/item/stack/material/steel
|
|
|
|
/singleton/fabricator_recipe/materials/aluminium
|
|
name = "aluminium sheets"
|
|
path = /obj/item/stack/material/aluminium
|
|
|
|
/singleton/fabricator_recipe/materials/glass
|
|
name = "glass sheets"
|
|
path = /obj/item/stack/material/glass
|
|
|
|
/singleton/fabricator_recipe/materials/rglass
|
|
name = "reinforced glass sheets"
|
|
path = /obj/item/stack/material/glass/reinforced
|
|
|
|
/singleton/fabricator_recipe/materials/rods
|
|
name = "metal rods"
|
|
path = /obj/item/stack/rods
|
|
|
|
/singleton/fabricator_recipe/materials/barbed_wire
|
|
name = "barbed wire"
|
|
path = /obj/item/stack/barbed_wire
|