Skip to content

Commit 6c87f41

Browse files
authored
Leprechaun Suit! (#38832)
* Update Leprechaun * Species Update Species Update
1 parent 55882f3 commit 6c87f41

File tree

19 files changed

+34
-0
lines changed

19 files changed

+34
-0
lines changed

code/game/machinery/vending.dm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2715,6 +2715,7 @@ var/global/num_vending_terminals = 1
27152715
/obj/item/weapon/storage/box/smartbox/clothing_box/knucklessuit = AUTO_DROBE_DEFAULT_STOCK,
27162716
/obj/item/weapon/storage/box/smartbox/clothing_box/amysuit = AUTO_DROBE_DEFAULT_STOCK,
27172717
/obj/item/weapon/storage/box/smartbox/clothing_box/shadowsuit = AUTO_DROBE_DEFAULT_STOCK,
2718+
/obj/item/weapon/storage/box/smartbox/clothing_box/lepresuit = AUTO_DROBE_DEFAULT_STOCK,
27182719
/obj/item/clothing/head/beret = 3,
27192720
/obj/item/clothing/suit/wcoat = 3,
27202721
/obj/item/clothing/under/suit_jacket = 3,

code/game/objects/items/weapons/storage/boxes.dm

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,6 +1493,15 @@
14931493
new /obj/item/clothing/shoes/sonicman(src)
14941494
..()
14951495

1496+
/obj/item/weapon/storage/box/smartbox/clothing_box/lepresuit
1497+
name = "Leprechaun costume box"
1498+
1499+
/obj/item/weapon/storage/box/smartbox/clothing_box/lepresuit/New()
1500+
new /obj/item/clothing/head/lepre(src)
1501+
new /obj/item/clothing/under/lepre(src)
1502+
new /obj/item/clothing/shoes/lepre(src)
1503+
..()
1504+
14961505
/obj/item/weapon/storage/box/large/utensils_plastic
14971506
name = "Plastic Utensils"
14981507
desc = "For your picnic needs"

code/modules/clothing/head/misc.dm

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -895,3 +895,11 @@ var/image/unusual_overlay = image('icons/mob/head.dmi', "unusual_overlay", pixel
895895
species_fit = list(GREY_SHAPED,VOX_SHAPED)
896896
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi')
897897
heat_conductivity = SNOWGEAR_HEAT_CONDUCTIVITY
898+
899+
/obj/item/clothing/head/lepre
900+
name = "leprechaun hat"
901+
icon_state = "lepre"
902+
item_state = "lepre"
903+
desc = "Kiss me I'm Irish!"
904+
flags = FPRINT
905+
species_fit = list(GREY_SHAPED,VOX_SHAPED,INSECT_SHAPED)

code/modules/clothing/shoes/miscellaneous.dm

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -666,3 +666,10 @@
666666
icon_state = "sonicmanshoes"
667667
item_state = "sonicmanshoes"
668668
desc = "Lightspeed dash sold seperately."
669+
670+
/obj/item/clothing/shoes/lepre
671+
name = "Leprechaun boots"
672+
desc = "You'll never get me pot o' gold!"
673+
icon_state = "lepre"
674+
item_state = "lepre"
675+
species_fit = list(GREY_SHAPED,VOX_SHAPED,INSECT_SHAPED)

code/modules/clothing/under/miscellaneous.dm

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,3 +1134,12 @@
11341134
_color = "sonicmansuit"
11351135
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/items_lefthand.dmi', "right_hand" = 'icons/mob/in-hand/right/items_righthand.dmi')
11361136
clothing_flags = ONESIZEFITSALL
1137+
1138+
/obj/item/clothing/under/lepre
1139+
name = "Leprechaun outfit"
1140+
desc = "Shipping off to Boston!"
1141+
icon_state = "lepre"
1142+
item_state = "lepre"
1143+
_color = "lepre"
1144+
clothing_flags = ONESIZEFITSALL
1145+
species_fit = list(GREY_SHAPED,VOX_SHAPED,INSECT_SHAPED)

icons/mob/feet.dmi

834 Bytes
Binary file not shown.

icons/mob/head.dmi

125 Bytes
Binary file not shown.

icons/mob/species/grey/head.dmi

8.86 KB
Binary file not shown.
154 Bytes
Binary file not shown.
20.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)