-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5304c87
commit 496142b
Showing
30 changed files
with
122 additions
and
15 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
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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
@@ -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 |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Stub for forging. TODO implement TOOL_CHISEL. | ||
/obj/item/tool/chisel | ||
name = "chisel" | ||
desc = "A hard, sharpened tool used to chisel stone, wood or bone." | ||
icon_state = ICON_STATE_WORLD | ||
icon = 'icons/obj/items/tool/chisel.dmi' | ||
material = /decl/material/solid/metal/steel | ||
handle_material = /decl/material/solid/organic/plastic | ||
binding_material = null | ||
|
||
/obj/item/tool/chisel/forged | ||
handle_material = null |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Stub for forging. TODO barrel crafting. | ||
/obj/item/barrel_rim | ||
name = "barrel rim" | ||
desc = "A circular brace used to hold a barrel together." | ||
icon_state = ICON_STATE_WORLD | ||
icon = 'icons/obj/items/barrel_rim.dmi' | ||
material = /decl/material/solid/metal/iron | ||
material_alteration = MAT_FLAG_ALTERATION_ALL |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Stub for forging. TODO shield crafting. | ||
/obj/item/shield_fasteners | ||
name = "shield fasteners" | ||
desc = "A handful of shaped fasteners used to hold a buckler or shield together." | ||
icon_state = ICON_STATE_WORLD | ||
icon = 'icons/obj/items/shield_fasteners.dmi' | ||
material = /decl/material/solid/metal/iron | ||
material_alteration = MAT_FLAG_ALTERATION_ALL |
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 |
---|---|---|
@@ -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 |
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
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/obj/item/stack/material/nail | ||
name = "nails" | ||
singular_name = "nail" | ||
plural_name = "nails" | ||
icon_state = "nail" | ||
plural_icon_state = "nail-mult" | ||
max_icon_state = "nail-max" | ||
stack_merge_type = /obj/item/stack/material/nail | ||
crafting_stack_type = /obj/item/stack/material/nail | ||
icon = 'icons/obj/items/stacks/nails.dmi' | ||
is_spawnable_type = TRUE | ||
matter_multiplier = 0.05 // 20 per standard sheet | ||
|
||
/obj/item/stack/material/nail/twelve | ||
amount = 12 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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