Skip to content

Commit

Permalink
Merge pull request Blackstone-SS13#83 from cornercube/cornercube-clot…
Browse files Browse the repository at this point in the history
…hcraft

cloth crafting
  • Loading branch information
ChungusGamer666 authored Apr 15, 2024
2 parents e08bec9 + d8d0899 commit d8da563
Showing 1 changed file with 66 additions and 1 deletion.
67 changes: 66 additions & 1 deletion code/modules/roguetown/roguecrafting/sewing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,59 @@
tools = list(/obj/item/needle)
skillcraft = /datum/skill/misc/sewing

/* craftdif of 0 */

/datum/crafting_recipe/roguetown/sewing/cape
name = "cape"
result = list(/obj/item/clothing/cloak/cape)
reqs = list(/obj/item/natural/cloth = 2,
/obj/item/natural/fibers = 1)
craftdiff = 0

/datum/crafting_recipe/roguetown/sewing/halfcloak
name = "cloth half cloak"
result = list(/obj/item/clothing/cloak/half)
reqs = list(/obj/item/natural/cloth = 1,
/obj/item/natural/fibers = 1)
craftdiff = 0

/datum/crafting_recipe/roguetown/sewing/clothgloves
name = "cloth gloves"
result = list(/obj/item/clothing/gloves/roguetown/fingerless)
reqs = list(/obj/item/natural/cloth = 1,
/obj/item/natural/fibers = 1)
craftdiff = 0

/datum/crafting_recipe/roguetown/sewing/clothshirt
name = "cloth shirt"
result = list(/obj/item/clothing/suit/roguetown/shirt/undershirt)
reqs = list(/obj/item/natural/cloth = 2,
/obj/item/natural/fibers = 1)
craftdiff = 0

/datum/crafting_recipe/roguetown/sewing/clothtrou
name = "cloth trousers"
result = list(/obj/item/clothing/under/roguetown/trou)
reqs = list(/obj/item/natural/cloth = 2,
/obj/item/natural/fibers = 1)
craftdiff = 0

/* craftdif of 1 */

/datum/crafting_recipe/roguetown/sewing/knitcap
name = "knit cap"
result = list(/obj/item/clothing/head/roguetown/knitcap)
reqs = list(/obj/item/natural/cloth = 2,
/obj/item/natural/fibers = 1)
craftdiff = 1

/datum/crafting_recipe/roguetown/sewing/headband
name = "headband"
result = list(/obj/item/clothing/head/roguetown/headband)
reqs = list(/obj/item/natural/cloth = 2,
/obj/item/natural/fibers = 1)
craftdiff = 1

/datum/crafting_recipe/roguetown/sewing/tabard
name = "tabard"
result = list(/obj/item/clothing/cloak/tabard)
Expand All @@ -21,4 +74,16 @@
result = list(/obj/item/clothing/cloak/stabard/surcoat)
reqs = list(/obj/item/natural/cloth = 4,
/obj/item/natural/fibers = 1)
craftdiff = 1
craftdiff = 1

/* craftdif of 2+ */

/datum/crafting_recipe/roguetown/sewing/clotharmor
name = "gambeson"
result = list(/obj/item/clothing/suit/roguetown/armor/gambeson)
reqs = list(/obj/item/natural/cloth = 6,
/obj/item/natural/fibers = 2)
craftdiff = 3



0 comments on commit d8da563

Please sign in to comment.