Skip to content

Commit

Permalink
cloudbreak
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadhorizon committed Aug 17, 2024
1 parent 717bb83 commit 6af1c80
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions code/datums/components/crafting/recipes/weapon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@
category= CAT_WEAPONRY
subcategory = CAT_WEAPON

/datum/crafting_recipe/improvised_pneumatic_cannon //Pretty easy to obtain but
name = "Pneumatic Cannon"
result = /obj/item/pneumatic_cannon/ghetto
tools = list(TOOL_WELDER, TOOL_WRENCH)
reqs = list(/obj/item/stack/sheet/metal = 4,
/obj/item/stack/packageWrap = 8,
/obj/item/pipe = 2)
time = 50
category = CAT_WEAPONRY
subcategory = CAT_WEAPON

/datum/crafting_recipe/meteorslug
name = "Meteorslug Shell"
result = /obj/item/ammo_casing/shotgun/meteorslug
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,15 @@
result = /obj/item/food/cake/pumpkinspice
subcategory = CAT_CAKE

/datum/crafting_recipe/food/angelcake
name = "Angel food cake"
reqs = list(
/datum/reagent/consumable/cream = 25,
/obj/item/food/cake/plain = 1
)
result = /obj/item/food/cake/holy_cake
subcategory = CAT_CAKE

/datum/crafting_recipe/food/poundcake
name = "Pound cake"
reqs = list(
Expand Down

0 comments on commit 6af1c80

Please sign in to comment.