mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
[MIRROR] Bunny suits (#9331)
Co-authored-by: Casey <a.roaming.shadow@gmail.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
38b0939ad4
commit
20afa499ec
@@ -569,3 +569,12 @@ Talon pin
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(wristband_lists)
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/accessory/bunny_tail
|
||||
display_name = "bunny tail, colorable"
|
||||
path = /obj/item/clothing/accessory/bunny_tail
|
||||
|
||||
/datum/gear/accessory/bunny_tail/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
|
||||
@@ -244,6 +244,10 @@
|
||||
display_name = "rabbit ears"
|
||||
path = /obj/item/clothing/head/rabbitears
|
||||
|
||||
/datum/gear/head/rabbit/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/head/beanie
|
||||
display_name = "beanie"
|
||||
path = /obj/item/clothing/head/beanie
|
||||
|
||||
@@ -633,3 +633,22 @@
|
||||
"black tabard-dress"=/obj/item/clothing/under/dress/tabard/black
|
||||
)
|
||||
gear_tweaks += list(new/datum/gear_tweak/path(tabarddress))
|
||||
|
||||
//bunny suits
|
||||
|
||||
/datum/gear/uniform/bunnysuit
|
||||
display_name = "bunny suit selection, colorable"
|
||||
path = /obj/item/clothing/under/bunnysuit
|
||||
|
||||
/datum/gear/uniform/bunnysuit/New()
|
||||
..()
|
||||
var/list/bunnysuit = list(
|
||||
"bunnysuit"=/obj/item/clothing/under/bunnysuit,
|
||||
"maid bunnysuit"=/obj/item/clothing/under/bunnysuit_maid,
|
||||
"reverse bunnysuit"=/obj/item/clothing/under/reverse_bunnysuit,
|
||||
"maid reverse bunnysuit"=/obj/item/clothing/under/reverse_bunnysuit_maid,
|
||||
"reverse bunnysuit, no legs"=/obj/item/clothing/under/reverse_bunnytop,
|
||||
"maid reverse bunnysuit, no legs"=/obj/item/clothing/under/reverse_bunnytop_maid
|
||||
)
|
||||
gear_tweaks += list(new/datum/gear_tweak/path(bunnysuit))
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
Reference in New Issue
Block a user