first commit with everything

This commit is contained in:
SandPoot
2023-01-08 21:36:57 -03:00
parent e292452aae
commit f2a49bc319
14 changed files with 144 additions and 113 deletions
+10 -6
View File
@@ -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"
+4 -2
View File
@@ -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
+4 -3
View File
@@ -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"
+8 -7
View File
@@ -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")
)