This repository has been archived by the owner on Jan 28, 2023. It is now read-only.
forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed formatting and bench detection
- Loading branch information
Showing
9 changed files
with
54 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/datum/craft_recipe/salvage | ||
category = "Salvage" | ||
time = 150 | ||
icon_state = "gun" | ||
|
||
/datum/craft_recipe/salvage/salvage_sawblade | ||
name = "Salvage sawblade" | ||
desc = "Disassemble a circular saw to get a sawblade which can be used for other purposes." | ||
result = /obj/item/ammo_casing/sawblade | ||
steps = list( | ||
list(CRAFT_OBJECT, /obj/item/weapon/tool/saw/circular), | ||
list(CRAFT_TOOL, QUALITY_SCREW_DRIVING, 10, "time" = 150), | ||
) | ||
|
||
/datum/craft_recipe/salvage/salvage_sawblade_adv | ||
name = "Salvage diamond sawblade" | ||
desc = "Disassemble an advanced circular saw to get a diamond sawblade which can be used for other purposes." | ||
result = /obj/item/ammo_casing/sawblade/diamond | ||
steps = list( | ||
list(CRAFT_OBJECT, /obj/item/weapon/tool/saw/advanced_circular), | ||
list(CRAFT_TOOL, QUALITY_SCREW_DRIVING, 10, "time" = 300), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters