forked from Sandstorm-Station/Sandstorm-Station-13
-
-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1097 from ariaworld/fix-tailbags
[REFACTOR] Refactor, clean and optimize tailbag code.
- Loading branch information
Showing
6 changed files
with
68 additions
and
150 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
6 changes: 3 additions & 3 deletions
6
modular_splurt/code/datums/components/crafting/recipes/recipes_clothing.dm
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
/datum/crafting_recipe/tailbag | ||
name = "Tailbag" | ||
result = /obj/item/storage/tailbag | ||
result = /obj/item/storage/wallet/tailbag | ||
reqs = list(/obj/item/stack/sheet/leather = 2) | ||
time = 30 | ||
category = CAT_CLOTHING | ||
|
||
/datum/crafting_recipe/tailbag_xl | ||
name = "XL Tailbag" | ||
result = /obj/item/storage/tailbag/xtralg | ||
reqs = list(/obj/item/storage/tailbag = 1, | ||
result = /obj/item/storage/wallet/tailbag/xtralg | ||
reqs = list(/obj/item/storage/wallet/tailbag = 1, | ||
/obj/item/stack/sheet/leather = 2) | ||
time = 30 | ||
category = CAT_CLOTHING |
122 changes: 0 additions & 122 deletions
122
modular_splurt/code/game/objects/items/storage/tailbag.dm
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,24 +1,24 @@ | ||
/datum/gear/hands/paicard | ||
name = "pAI device" | ||
description = "A personal AI device for checking and downloading various personalities." | ||
path = /obj/item/paicard | ||
|
||
/datum/gear/hands/tailbag | ||
name = "Tailbag" | ||
description = "A bag for holding small personal items, which fastens around the base of the tail." | ||
path = /obj/item/storage/tailbag | ||
|
||
/datum/gear/hands/tarotdeck | ||
name = "Tarot Deck" | ||
description = "A full 78 card deck of Tarot Cards, no refunds on false predicitons." | ||
path = /obj/item/toy/cards/deck/tarot | ||
|
||
//MODIFIED COSTS - MODULAR SPLURT | ||
/datum/gear/hands/straightrazor | ||
cost = 6 | ||
|
||
/datum/gear/hands/flask | ||
cost = 1 | ||
|
||
/datum/gear/hands/cigar | ||
cost = 2 | ||
/datum/gear/hands/paicard | ||
name = "pAI device" | ||
description = "A personal AI device for checking and downloading various personalities." | ||
path = /obj/item/paicard | ||
|
||
/datum/gear/hands/tailbag | ||
name = "Tailbag" | ||
description = "A bag for holding small personal items, which fastens around the base of the tail." | ||
path = /obj/item/storage/wallet/tailbag | ||
|
||
/datum/gear/hands/tarotdeck | ||
name = "Tarot Deck" | ||
description = "A full 78 card deck of Tarot Cards, no refunds on false predicitons." | ||
path = /obj/item/toy/cards/deck/tarot | ||
|
||
//MODIFIED COSTS - MODULAR SPLURT | ||
/datum/gear/hands/straightrazor | ||
cost = 6 | ||
|
||
/datum/gear/hands/flask | ||
cost = 1 | ||
|
||
/datum/gear/hands/cigar | ||
cost = 2 |
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