mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 07:59:01 +01:00
The Pumped Up Kicks Update (#16265)
* The Pumped Up Kicks Update Shoes. New shoes. Look at them. * WELCOME TO THE UNDERGROUND * for the love of crust * turns out a var already existed for that but was never implemented ffs * face it you're never going to make it * these are winter boots * removes Paradox's Thinly Veiled Fetish * shiit * Apply suggestions from code review * Update code/modules/clothing/shoes/oxfords.dm Co-authored-by: Cody Brittain <cbrittain10@yahoo.com> * oops * fuck this file * nice balls, bro * check out how hard i can pee * pissing on the moon * caligaeae * pee pee poo poo man * fixes * damn you * merge fixes * knees more * damn you merge conflict * fix * fixes 2 * riding boots * truly, this fixes things * dammit ctrl s --------- Co-authored-by: Cody Brittain <cbrittain10@yahoo.com>
This commit is contained in:
co-authored by
Cody Brittain
parent
e90c37abf6
commit
462115b501
@@ -134,5 +134,5 @@
|
||||
. = ..()
|
||||
if(H.shoes)
|
||||
return
|
||||
var/obj/item/clothing/shoes/sandal/S = new /obj/item/clothing/shoes/sandal(H)
|
||||
var/obj/item/clothing/shoes/sandals/S = new /obj/item/clothing/shoes/sandals(H)
|
||||
H.equip_to_slot_or_del(S,slot_shoes)
|
||||
|
||||
@@ -137,5 +137,5 @@
|
||||
. = ..()
|
||||
if(H.shoes)
|
||||
return
|
||||
var/obj/item/clothing/shoes/sandal/S = new /obj/item/clothing/shoes/sandal(H)
|
||||
var/obj/item/clothing/shoes/sandals/S = new /obj/item/clothing/shoes/sandals(H)
|
||||
H.equip_to_slot_or_del(S,slot_shoes)
|
||||
|
||||
@@ -152,7 +152,7 @@
|
||||
/datum/species/bug/after_equip(var/mob/living/carbon/human/H)
|
||||
if(H.shoes)
|
||||
return
|
||||
var/obj/item/clothing/shoes/sandal/S = new /obj/item/clothing/shoes/sandal(H)
|
||||
var/obj/item/clothing/shoes/sandals/S = new /obj/item/clothing/shoes/sandals(H)
|
||||
H.equip_to_slot_or_del(S,slot_shoes)
|
||||
|
||||
/datum/species/bug/handle_post_spawn(var/mob/living/carbon/human/H)
|
||||
|
||||
@@ -1183,7 +1183,7 @@ There are several things that need to be remembered:
|
||||
else
|
||||
mob_icon = l_hand.icon
|
||||
l_hand.auto_adapt_species(src)
|
||||
mob_state = "[UNDERSCORE_OR_NULL(l_hand.icon_species_tag)][l_hand.item_state][WORN_LHAND]"
|
||||
mob_state = "[UNDERSCORE_OR_NULL(l_hand.icon_species_in_hand ? l_hand.icon_species_tag : null)][l_hand.item_state][WORN_LHAND]"
|
||||
else
|
||||
if(l_hand.item_state_slots && l_hand.item_state_slots[slot_l_hand_str])
|
||||
mob_state = l_hand.item_state_slots[slot_l_hand_str]
|
||||
@@ -1219,7 +1219,7 @@ There are several things that need to be remembered:
|
||||
else
|
||||
mob_icon = r_hand.icon
|
||||
r_hand.auto_adapt_species(src)
|
||||
mob_state = "[UNDERSCORE_OR_NULL(r_hand.icon_species_tag)][r_hand.item_state][WORN_RHAND]"
|
||||
mob_state = "[UNDERSCORE_OR_NULL(r_hand.icon_species_in_hand ? r_hand.icon_species_tag : null)][r_hand.item_state][WORN_RHAND]"
|
||||
else
|
||||
if(r_hand.item_state_slots && r_hand.item_state_slots[slot_r_hand_str])
|
||||
mob_state = r_hand.item_state_slots[slot_r_hand_str]
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
name = "Syndicate Operative"
|
||||
corpseuniform = /obj/item/clothing/under/syndicate
|
||||
corpsesuit = /obj/item/clothing/suit/armor/vest
|
||||
corpseshoes = /obj/item/clothing/shoes/swat
|
||||
corpseshoes = /obj/item/clothing/shoes/combat
|
||||
corpsegloves = /obj/item/clothing/gloves/swat
|
||||
corpseradio = /obj/item/device/radio/headset
|
||||
corpsemask = /obj/item/clothing/mask/gas
|
||||
@@ -108,7 +108,7 @@
|
||||
name = "Syndicate Commando"
|
||||
corpseuniform = /obj/item/clothing/under/syndicate
|
||||
corpsesuit = /obj/item/clothing/suit/space/void/merc
|
||||
corpseshoes = /obj/item/clothing/shoes/swat
|
||||
corpseshoes = /obj/item/clothing/shoes/combat
|
||||
corpsegloves = /obj/item/clothing/gloves/swat
|
||||
corpseradio = /obj/item/device/radio/headset
|
||||
corpsemask = /obj/item/clothing/mask/gas/syndicate
|
||||
|
||||
Reference in New Issue
Block a user