-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update sheet_types.dm * Update stone.dm * Add files via upload * Add files via upload * Update storage_structures.dm * Add files via upload * Update tgstation.dme * Update tgstation.dme * Update stone_griddle.dm * Update storage_structures.dm Co-authored-by: xXPawnStarrXx <[email protected]>
- Loading branch information
1 parent
1a34d0f
commit b81ef97
Showing
9 changed files
with
103 additions
and
2 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
32 changes: 32 additions & 0 deletions
32
modular_skyrat/modules/primitive_cooking_additions/code/stone_griddle.dm
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,32 @@ | ||
/obj/machinery/griddle/stone | ||
name = "stone griddle" | ||
desc = "You could probably cook an egg on this... the griddle slab looks very unsanitary." | ||
icon = 'modular_skyrat/modules/primitive_cooking_additions/icons/stone_kitchen_machines.dmi' | ||
icon_state = "griddle1_off" | ||
density = TRUE | ||
pass_flags_self = PASSMACHINE | PASSTABLE| LETPASSTHROW // It's roughly the height of a table. | ||
layer = BELOW_OBJ_LAYER | ||
use_power = FALSE | ||
circuit = null | ||
resistance_flags = FIRE_PROOF | ||
processing_flags = START_PROCESSING_MANUALLY | ||
variant = 1 | ||
|
||
/obj/machinery/griddle/Initialize(mapload) | ||
. = ..() | ||
grill_loop = new(src, FALSE) | ||
if(isnum(variant)) | ||
variant = 1 | ||
|
||
/obj/machinery/griddle/stone/examine(mob/user) | ||
. = ..() | ||
|
||
. += span_notice("It can be taken apart with a <b>crowbar</b>.") | ||
|
||
/obj/machinery/griddle/stone/crowbar_act(mob/living/user, obj/item/tool) | ||
user.balloon_alert_to_viewers("disassembling...") | ||
if(!tool.use_tool(src, user, 2 SECONDS, volume = 100)) | ||
return | ||
new /obj/item/stack/sheet/mineral/stone(drop_location(), 5) | ||
deconstruct(TRUE) | ||
return TOOL_ACT_TOOLTYPE_SUCCESS |
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
Binary file modified
BIN
+906 Bytes
(120%)
modular_skyrat/modules/primitive_cooking_additions/icons/stone_kitchen_machines.dmi
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
Binary file modified
BIN
-447 Bytes
(67%)
modular_skyrat/modules/primitive_structures/icons/storage.dmi
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
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