Skip to content
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
1 change: 1 addition & 0 deletions code/game/machinery/vending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
9 changes: 9 additions & 0 deletions code/game/objects/items/weapons/storage/boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 8 additions & 0 deletions code/modules/clothing/head/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
7 changes: 7 additions & 0 deletions code/modules/clothing/shoes/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
9 changes: 9 additions & 0 deletions code/modules/clothing/under/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Binary file modified icons/mob/feet.dmi
Binary file not shown.
Binary file modified icons/mob/head.dmi
Binary file not shown.
Binary file modified icons/mob/species/grey/head.dmi
Binary file not shown.
Binary file modified icons/mob/species/insectoid/feet.dmi
Binary file not shown.
Binary file modified icons/mob/species/insectoid/head.dmi
Binary file not shown.
Binary file modified icons/mob/species/insectoid/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/species/vox/head.dmi
Binary file not shown.
Binary file modified icons/mob/species/vox/shoes.dmi
Binary file not shown.
Binary file modified icons/mob/species/vox/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/uniform_fat.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/hats.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/shoes.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/uniforms.dmi
Binary file not shown.
Loading