Files
Paradise/code/modules/smithing/components/tool_bits_components.dm
PollardTheDragon 5a5e760f37 Smith Addition: Productivity Bit (#28999)
* Adds productivity bit

* Digging sand

* Proper smithing costs
2025-04-26 14:15:34 +00:00

96 lines
3.9 KiB
Plaintext

/obj/item/smithed_item/component/bit_mount
name = "Debug bit mount"
icon_state = "bit_mount"
desc = "Debug smithed component part of a tool bit. If you see this, notify the development team."
part_type = PART_PRIMARY
/obj/item/smithed_item/component/bit_mount/speed
name = "speed bit mount"
desc = "This is the primary component of a speed bit"
materials = list(MAT_TITANIUM = 4000)
finished_product = /obj/item/smithed_item/tool_bit/speed
/obj/item/smithed_item/component/bit_mount/efficiency
name = "efficiency bit mount"
desc = "This is the primary component of an efficiency bit"
materials = list(MAT_SILVER = 4000)
finished_product = /obj/item/smithed_item/tool_bit/efficiency
/obj/item/smithed_item/component/bit_mount/balanced
name = "balanced bit mount"
desc = "This is the primary component of an balanced bit."
materials = list(MAT_TITANIUM = 4000)
finished_product = /obj/item/smithed_item/tool_bit/balanced
/obj/item/smithed_item/component/bit_mount/heavy
name = "heavy duty bit mount"
desc = "This is the primary component of a heavy duty bit."
materials = list(MAT_TITANIUM = 8000, MAT_PLASMA = 8000)
finished_product = /obj/item/smithed_item/tool_bit/heavy
/obj/item/smithed_item/component/bit_mount/productivity
name = "productivity bit mount"
desc = "This is the primary component of a productivity bit."
materials = list(MAT_METAL = 2000, MAT_PLASMA = 2000)
finished_product = /obj/item/smithed_item/tool_bit/productivity
/obj/item/smithed_item/component/bit_mount/economical
name = "economical bit mount"
desc = "This is the primary component of an economical bit."
materials = list(MAT_TITANIUM = 4000, MAT_PLASMA = 4000)
finished_product = /obj/item/smithed_item/tool_bit/economical
/obj/item/smithed_item/component/bit_mount/advanced
name = "advanced bit mount"
desc = "This is the primary component of an advanced bit."
materials = list(MAT_TITANIUM = 4000, MAT_PLASMA = 4000)
finished_product = /obj/item/smithed_item/tool_bit/advanced
/obj/item/smithed_item/component/bit_head
name = "Debug bit head"
icon_state = "bit_head"
desc = "Debug smithed component part of a tool bit. If you see this, notify the development team."
part_type = PART_SECONDARY
/obj/item/smithed_item/component/bit_head/speed
name = "speed bit head"
desc = "This is the secondary component of a speed bit."
materials = list(MAT_METAL = 4000)
finished_product = /obj/item/smithed_item/tool_bit/speed
/obj/item/smithed_item/component/bit_head/efficiency
name = "efficiency bit head"
desc = "This is the secondary component of an efficiency bit."
materials = list(MAT_METAL = 4000)
finished_product = /obj/item/smithed_item/tool_bit/efficiency
/obj/item/smithed_item/component/bit_head/balanced
name = "balanced bit head"
desc = "This is the secondary component of a balanced bit."
materials = list(MAT_BRASS = 4000)
finished_product = /obj/item/smithed_item/tool_bit/balanced
/obj/item/smithed_item/component/bit_head/heavy
name = "heavy duty bit head"
desc = "This is the secondary component of a heavy duty bit."
materials = list(MAT_METAL = 8000, MAT_PLASMA = 8000)
finished_product = /obj/item/smithed_item/tool_bit/heavy
/obj/item/smithed_item/component/bit_head/productivity
name = "productivity bit mount"
desc = "This is the secondary component of a productivity bit."
materials = list(MAT_GOLD = 2000, MAT_SILVER = 2000)
finished_product = /obj/item/smithed_item/tool_bit/productivity
/obj/item/smithed_item/component/bit_head/economical
name = "economical bit head"
desc = "This is the secondary component of an economical bit."
materials = list(MAT_METAL = 4000, MAT_PLASMA = 4000)
finished_product = /obj/item/smithed_item/tool_bit/economical
/obj/item/smithed_item/component/bit_head/advanced
name = "advanced bit head"
desc = "This is the secondary component of an advanced bit."
materials = list(MAT_METAL = 4000, MAT_PLATINUM = 4000)
finished_product = /obj/item/smithed_item/tool_bit/advanced