diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index bb4105f80915..e22253da3e52 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -2715,6 +2715,7 @@ var/global/num_vending_terminals = 1 /obj/item/weapon/storage/box/smartbox/clothing_box/knucklessuit = AUTO_DROBE_DEFAULT_STOCK, /obj/item/weapon/storage/box/smartbox/clothing_box/amysuit = AUTO_DROBE_DEFAULT_STOCK, /obj/item/weapon/storage/box/smartbox/clothing_box/shadowsuit = AUTO_DROBE_DEFAULT_STOCK, + /obj/item/weapon/storage/box/smartbox/clothing_box/lepresuit = AUTO_DROBE_DEFAULT_STOCK, /obj/item/clothing/head/beret = 3, /obj/item/clothing/suit/wcoat = 3, /obj/item/clothing/under/suit_jacket = 3, diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 09272c11cfdd..59bf71319082 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -1493,6 +1493,15 @@ new /obj/item/clothing/shoes/sonicman(src) ..() +/obj/item/weapon/storage/box/smartbox/clothing_box/lepresuit + name = "Leprechaun costume box" + +/obj/item/weapon/storage/box/smartbox/clothing_box/lepresuit/New() + new /obj/item/clothing/head/lepre(src) + new /obj/item/clothing/under/lepre(src) + new /obj/item/clothing/shoes/lepre(src) + ..() + /obj/item/weapon/storage/box/large/utensils_plastic name = "Plastic Utensils" desc = "For your picnic needs" diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 6043a1bc423e..59ddb49946c5 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -895,3 +895,11 @@ var/image/unusual_overlay = image('icons/mob/head.dmi', "unusual_overlay", pixel species_fit = list(GREY_SHAPED,VOX_SHAPED) inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi') heat_conductivity = SNOWGEAR_HEAT_CONDUCTIVITY + +/obj/item/clothing/head/lepre + name = "leprechaun hat" + icon_state = "lepre" + item_state = "lepre" + desc = "Kiss me I'm Irish!" + flags = FPRINT + species_fit = list(GREY_SHAPED,VOX_SHAPED,INSECT_SHAPED) diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index bf39e9aee201..aae198593628 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -666,3 +666,10 @@ icon_state = "sonicmanshoes" item_state = "sonicmanshoes" desc = "Lightspeed dash sold seperately." + +/obj/item/clothing/shoes/lepre + name = "Leprechaun boots" + desc = "You'll never get me pot o' gold!" + icon_state = "lepre" + item_state = "lepre" + species_fit = list(GREY_SHAPED,VOX_SHAPED,INSECT_SHAPED) diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index e4ee80c54643..2e8cd5c1f6ab 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -1134,3 +1134,12 @@ _color = "sonicmansuit" inhand_states = list("left_hand" = 'icons/mob/in-hand/left/items_lefthand.dmi', "right_hand" = 'icons/mob/in-hand/right/items_righthand.dmi') clothing_flags = ONESIZEFITSALL + +/obj/item/clothing/under/lepre + name = "Leprechaun outfit" + desc = "Shipping off to Boston!" + icon_state = "lepre" + item_state = "lepre" + _color = "lepre" + clothing_flags = ONESIZEFITSALL + species_fit = list(GREY_SHAPED,VOX_SHAPED,INSECT_SHAPED) diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index c3faf352cc5f..7b213a1044bb 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 30d31002db12..e0619a13826d 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/species/grey/head.dmi b/icons/mob/species/grey/head.dmi index c6a64c11ed6f..a1d30856a496 100644 Binary files a/icons/mob/species/grey/head.dmi and b/icons/mob/species/grey/head.dmi differ diff --git a/icons/mob/species/insectoid/feet.dmi b/icons/mob/species/insectoid/feet.dmi index 88c9100113e9..884766a067ac 100644 Binary files a/icons/mob/species/insectoid/feet.dmi and b/icons/mob/species/insectoid/feet.dmi differ diff --git a/icons/mob/species/insectoid/head.dmi b/icons/mob/species/insectoid/head.dmi index 16aed7e87dfa..fbd777f7d2ce 100644 Binary files a/icons/mob/species/insectoid/head.dmi and b/icons/mob/species/insectoid/head.dmi differ diff --git a/icons/mob/species/insectoid/uniform.dmi b/icons/mob/species/insectoid/uniform.dmi index dbb71135bdab..34a88533f8a2 100644 Binary files a/icons/mob/species/insectoid/uniform.dmi and b/icons/mob/species/insectoid/uniform.dmi differ diff --git a/icons/mob/species/vox/head.dmi b/icons/mob/species/vox/head.dmi index 97404e6082f9..97c11cbf4df1 100644 Binary files a/icons/mob/species/vox/head.dmi and b/icons/mob/species/vox/head.dmi differ diff --git a/icons/mob/species/vox/shoes.dmi b/icons/mob/species/vox/shoes.dmi index f4e935dbffc7..b8cae45a5584 100644 Binary files a/icons/mob/species/vox/shoes.dmi and b/icons/mob/species/vox/shoes.dmi differ diff --git a/icons/mob/species/vox/uniform.dmi b/icons/mob/species/vox/uniform.dmi index aab0101b0f8e..321a8ddeba14 100644 Binary files a/icons/mob/species/vox/uniform.dmi and b/icons/mob/species/vox/uniform.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index 29b46fd1d8d7..4723b3569e5e 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/mob/uniform_fat.dmi b/icons/mob/uniform_fat.dmi index fb4c10f61e73..6675d1ec674b 100644 Binary files a/icons/mob/uniform_fat.dmi and b/icons/mob/uniform_fat.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 54e7c4a640cf..42fb40db381c 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index 9b34d27f20e7..30df6addf858 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index df9cfe362aa5..15d324e41760 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ