Skip to content

Commit

Permalink
Make the travois not a bed
Browse files Browse the repository at this point in the history
  • Loading branch information
out-of-phaze committed Feb 3, 2025
1 parent c46dd91 commit 70162a5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 19 deletions.
17 changes: 0 additions & 17 deletions code/game/objects/structures/beds/travois.dm

This file was deleted.

22 changes: 22 additions & 0 deletions code/game/objects/structures/travois.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* Travois used to drag mobs in low-tech settings.
*/
/obj/structure/travois
name = "travois"
desc = "An assemblage of sticks, commonly used to make it easier to transport animal carcasses."
anchored = FALSE
icon_state = ICON_STATE_WORLD
icon = 'icons/obj/structures/travois.dmi'
can_buckle = TRUE
buckle_dir = SOUTH
buckle_lying = TRUE
buckle_sound = 'sound/effects/buckle.ogg'
buckle_pixel_shift = list("x" = 0, "y" = 0, "z" = 6)
obj_flags = OBJ_FLAG_SUPPORT_MOB
movable_flags = MOVABLE_FLAG_WHEELED
tool_interaction_flags = TOOL_INTERACTION_DECONSTRUCT
user_comfort = 0
parts_amount = 1
parts_type = /obj/item/stack/material/log
material_alteration = MAT_FLAG_ALTERATION_ALL
material = /decl/material/solid/organic/wood/oak
2 changes: 1 addition & 1 deletion code/modules/crafting/stack_recipes/recipes_logs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
forbidden_craft_stack_types = /obj/item/stack/material/ore

/decl/stack_recipe/logs/travois
result_type = /obj/structure/bed/travois
result_type = /obj/structure/travois
difficulty = MAT_VALUE_EASY_DIY

/decl/stack_recipe/turfs/wall/logs
Expand Down
2 changes: 1 addition & 1 deletion nebula.dme
Original file line number Diff line number Diff line change
Expand Up @@ -1476,6 +1476,7 @@
#include "code\game\objects\structures\target_stake.dm"
#include "code\game\objects\structures\town_bell.dm"
#include "code\game\objects\structures\transit_tubes.dm"
#include "code\game\objects\structures\travois.dm"
#include "code\game\objects\structures\under_wardrobe.dm"
#include "code\game\objects\structures\wall_frame.dm"
#include "code\game\objects\structures\wall_sconce.dm"
Expand All @@ -1493,7 +1494,6 @@
#include "code\game\objects\structures\beds\mattress.dm"
#include "code\game\objects\structures\beds\rollerbed.dm"
#include "code\game\objects\structures\beds\simple_bed.dm"
#include "code\game\objects\structures\beds\travois.dm"
#include "code\game\objects\structures\benches\bench.dm"
#include "code\game\objects\structures\benches\lounge.dm"
#include "code\game\objects\structures\benches\pew.dm"
Expand Down

0 comments on commit 70162a5

Please sign in to comment.