Skip to content

Commit

Permalink
Adding miscellaneous crafting items for future work.
Browse files Browse the repository at this point in the history
  • Loading branch information
MistakeNot4892 committed Jan 9, 2025
1 parent 876163b commit b4d74cb
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 0 deletions.
9 changes: 9 additions & 0 deletions code/game/objects/items/artifice/chain.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Stub for forging. TODO crafting that uses chains.
/obj/item/chain
name = "chain"
name_prefix = "length of"
desc = "A flexible length of interconnected links forming a chain."
icon_state = ICON_STATE_WORLD
icon = 'icons/obj/items/chain.dmi'
material = /decl/material/solid/metal/iron
material_alteration = MAT_FLAG_ALTERATION_ALL
8 changes: 8 additions & 0 deletions code/game/objects/items/artifice/hook.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Stub for forging. TODO use for fishing rod?
/obj/item/hook
name = "hook"
desc = "A small sharp curved object."
icon_state = ICON_STATE_WORLD
icon = 'icons/obj/items/hook.dmi'
material = /decl/material/solid/metal/iron
material_alteration = MAT_FLAG_ALTERATION_ALL
8 changes: 8 additions & 0 deletions code/game/objects/items/horseshoe.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Stub for forging. TODO implement shoes on honse.
/obj/item/horseshoe
name = "horseshoe"
desc = "A curved length of metal, usually nailed to a horse's hoof. May bring luck."
icon_state = ICON_STATE_WORLD
icon = 'icons/obj/items/horseshoe.dmi'
material = /decl/material/solid/metal/iron
material_alteration = MAT_FLAG_ALTERATION_ALL
Binary file added icons/obj/items/chain.dmi
Binary file not shown.
Binary file added icons/obj/items/hook.dmi
Binary file not shown.
Binary file added icons/obj/items/horseshoe.dmi
Binary file not shown.

0 comments on commit b4d74cb

Please sign in to comment.