first commit with everything
This commit is contained in:
@@ -79,16 +79,20 @@
|
||||
to_chat(user, "<span class='warning'>With [src] off of your arms, you feel less ready to punch things.</span>")
|
||||
|
||||
/obj/item/clothing/gloves/fingerless/pugilist/crafted
|
||||
unique_reskin = list("Short" = "armwraps",
|
||||
"Extended" = "armwraps_extended"
|
||||
)
|
||||
unique_reskin = list(
|
||||
"Short" = list("icon_state" = "armwraps"),
|
||||
"Extended" = list("icon_state" = "armwraps_extended")
|
||||
)
|
||||
|
||||
/obj/item/clothing/gloves/fingerless/pugilist/crafted/reskin_obj(mob/M)
|
||||
. = ..()
|
||||
if(icon_state == "armwraps_extended")
|
||||
item_state = "armwraps_extended"
|
||||
else
|
||||
if(!.)
|
||||
return
|
||||
switch(current_skin)
|
||||
if("Short")
|
||||
item_state = "armwraps"
|
||||
if("Extended")
|
||||
item_state = "armwraps_extended"
|
||||
|
||||
/obj/item/clothing/gloves/fingerless/pugilist/chaplain
|
||||
name = "armwraps of unyielding resolve"
|
||||
|
||||
@@ -275,8 +275,10 @@
|
||||
pocket_storage_component_path = /datum/component/storage/concrete/pockets/shoes
|
||||
actions_types = list(/datum/action/item_action/bhop)
|
||||
permeability_coefficient = 0.05
|
||||
unique_reskin = list("Explorer" = "miningjet",
|
||||
"Jackboot" = "jetboots")
|
||||
unique_reskin = list(
|
||||
"Explorer" = list("icon_state" = "miningjet"),
|
||||
"Jackboot" = list("icon_state" = "jetboots")
|
||||
)
|
||||
var/jumpdistance = 5 //-1 from to see the actual distance, e.g 4 goes over 3 tiles
|
||||
var/jumpspeed = 3
|
||||
var/recharging_rate = 60 //default 6 seconds between each dash
|
||||
|
||||
@@ -80,9 +80,10 @@
|
||||
item_state = "hostrench"
|
||||
flags_inv = 0
|
||||
strip_delay = 80
|
||||
unique_reskin = list("Coat" = "hostrench",
|
||||
"Cloak" = "trenchcloak"
|
||||
)
|
||||
unique_reskin = list(
|
||||
"Coat" = list("icon_state" = "hostrench"),
|
||||
"Cloak" = list("icon_state" = "trenchcloak")
|
||||
)
|
||||
|
||||
/obj/item/clothing/suit/armor/hos/platecarrier
|
||||
name = "plate carrier"
|
||||
|
||||
@@ -565,10 +565,11 @@
|
||||
icon_state = "pride"
|
||||
above_suit = TRUE
|
||||
obj_flags = UNIQUE_RENAME
|
||||
unique_reskin = list("Rainbow Pride" = "pride",
|
||||
"Bisexual Pride" = "pride_bi",
|
||||
"Pansexual Pride" = "pride_pan",
|
||||
"Asexual Pride" = "pride_ace",
|
||||
"Non-binary Pride" = "pride_enby",
|
||||
"Transgender Pride" = "pride_trans",
|
||||
)
|
||||
unique_reskin = list(
|
||||
"Rainbow Pride" = list("icon_state" = "pride"),
|
||||
"Bisexual Pride" = list("icon_state" = "pride_bi"),
|
||||
"Pansexual Pride" = list("icon_state" = "pride_pan"),
|
||||
"Asexual Pride" = list("icon_state" = "pride_ace"),
|
||||
"Non-binary Pride" = list("icon_state" = "pride_enby"),
|
||||
"Transgender Pride" = list("icon_state" = "pride_trans")
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user