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

[MIRROR] Add: Northeastern Duck Boots #5137

Merged
merged 2 commits into from
Oct 29, 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
Binary file modified modular_nova/master_files/icons/mob/clothing/feet.dmi
Binary file not shown.
Binary file modified modular_nova/master_files/icons/obj/clothing/shoes.dmi
Binary file not shown.
12 changes: 12 additions & 0 deletions modular_nova/modules/customization/modules/clothing/shoes/shoes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -227,3 +227,15 @@
greyscale_colors = "#FFFFFF"
body_parts_covered = FALSE
flags_1 = IS_PLAYER_COLORABLE_1

/obj/item/clothing/shoes/jackboots/duckboots
name = "northeastern duck boots"
desc = "A sturdy pair of winter boots. Cowhide top triple stitched to a rubber bottom provides unparalleled water resistance. A signature chain link tread ensures high grip in water, mud, brush and snow. These working boots gained fame in the northern parts of Terra more than 500 years ago."
icon = 'modular_nova/master_files/icons/obj/clothing/shoes.dmi'
worn_icon = 'modular_nova/master_files/icons/mob/clothing/feet.dmi'
icon_state = "duckboots"
supports_variations_flags = NONE

/obj/item/clothing/shoes/jackboots/duckboots/Initialize()
. = ..()
AddElement(/datum/element/manufacturer_examine, "It has a small <b>[span_red("red five pointed star")]</b> stamped onto the heel, and <b>[span_red("DIRIGO")]</b> etched under the soles.")
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@
name = "Russian Boots"
item_path = /obj/item/clothing/shoes/russian

/datum/loadout_item/shoes/duck_boots
name = "Northeastern Duck Boots"
item_path = /obj/item/clothing/shoes/jackboots/duckboots

/*
* COWBOY
*/
Expand Down
1 change: 1 addition & 0 deletions modular_nova/modules/modular_vending/code/clothesmate.dm
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@
/obj/item/clothing/shoes/jungleboots = 5,
/obj/item/clothing/shoes/jackboots/knee = 5,
/obj/item/clothing/shoes/jackboots/recolorable = 5,
/obj/item/clothing/shoes/jackboots/duckboots = 5,
),
),

Expand Down
Loading