Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Boots buff #152

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions code/modules/clothing/modular_armor/attachments/storage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -390,20 +390,21 @@
flags_attach_features = ATTACH_APPLY_ON_MOB

/obj/item/storage/internal/shoes/boot_knife
max_storage_space = 3
storage_slots = 1
max_storage_space = 4
storage_slots = 2
max_w_class = WEIGHT_CLASS_TINY
draw_mode = TRUE
can_hold = list(
//RUTGMC EDIT
bypass_w_limit = list(
/obj/item/weapon/yautja/knife,
//RUTGMC EDIT
/obj/item/weapon/combat_knife,
/obj/item/weapon/gun/pistol/standard_pocketpistol,
/obj/item/weapon/gun/shotgun/double/derringer,
/obj/item/attachable/bayonetknife,
/obj/item/attachable/bayonetknife/som,
/obj/item/stack/throwing_knife,
/obj/item/storage/box/MRE,
/obj/item/reagent_containers/food/snacks,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Можно будет пихать бургеры в сапог?

)
cant_hold = list(
/obj/item/stack/sheet,
)

/obj/item/armor_module/storage/boot/full/Initialize(mapload)
Expand Down
1 change: 1 addition & 0 deletions code/modules/clothing/shoes/marine_shoes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
for(var/atom/item_in_pocket AS in armor_storage.storage.contents)
if(istype(item_in_pocket, /obj/item/weapon/combat_knife) || istype(item_in_pocket, /obj/item/attachable/bayonetknife) || istype(item_in_pocket, /obj/item/stack/throwing_knife))
icon_state += "-knife"
break

/obj/item/clothing/shoes/marine/full
starting_attachments = list(/obj/item/armor_module/storage/boot/full)
Expand Down
Loading