diff --git a/code/modules/roguetown/roguecrafting/sewing.dm b/code/modules/roguetown/roguecrafting/sewing.dm index dd3e97c247..4c7c55baf6 100644 --- a/code/modules/roguetown/roguecrafting/sewing.dm +++ b/code/modules/roguetown/roguecrafting/sewing.dm @@ -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) @@ -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 \ No newline at end of file + 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 + + +