Skip to content

Commit

Permalink
Taste the rainbow
Browse files Browse the repository at this point in the history
  • Loading branch information
Robustin authored May 17, 2017
1 parent ca6619a commit 801dc2b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions code/game/gamemodes/gang/gang_datum.dm
Original file line number Diff line number Diff line change
Expand Up @@ -94,25 +94,25 @@
switch(color)
if("red")
color_hex = "#DA0000"
inner_outfit = pick(text2path("/obj/item/clothing/under/color/[color]"),/obj/item/clothing/under/lawyer/red)
inner_outfit = /obj/item/clothing/under/color/red, /obj/item/clothing/under/lawyer/red)
if("orange")
color_hex = "#FF9300"
inner_outfit = pick(text2path("/obj/item/clothing/under/color/[color]"),/obj/item/clothing/under/geisha)
inner_outfit = /obj/item/clothing/under/color/orange, /obj/item/clothing/under/geisha)
if("yellow")
color_hex = "#FFF200"
inner_outfit = pick(text2path("/obj/item/clothing/under/color/[color]"),/obj/item/clothing/under/burial)
inner_outfit = obj/item/clothing/under/color/yellow, /obj/item/clothing/under/burial)
if("green")
color_hex = "#A8E61D"
inner_outfit = pick(text2path("/obj/item/clothing/under/color/[color]"),/obj/item/clothing/under/syndicate/camo ,/obj/item/clothing/under/suit_jacket/tan)
inner_outfit = /obj/item/clothing/under/color/green, /obj/item/clothing/under/syndicate/camo, /obj/item/clothing/under/suit_jacket/tan)
if("blue")
color_hex = "#00B7EF"
inner_outfit = pick(text2path("/obj/item/clothing/under/color/[color]"),/obj/item/clothing/under/suit_jacket/navy)
inner_outfit = /obj/item/clothing/under/color/blue, /obj/item/clothing/under/suit_jacket/navy)
if("purple")
color_hex = "#DA00FF"
inner_outfit = pick(text2path("/obj/item/clothing/under/color/lightpurple"),/obj/item/clothing/under/lawyer/purpsuit)
inner_outfit = /obj/item/clothing/under/color/lightpurple, /obj/item/clothing/under/lawyer/purpsuit)
if("white")
color_hex = "#FFFFFF"
inner_outfit = pick(text2path("/obj/item/clothing/under/color/[color]"),/obj/item/clothing/under/suit_jacket/white)
inner_outfit = /obj/item/clothing/under/color/white, /obj/item/clothing/under/suit_jacket/white)

name = (gangname ? gangname : pick(GLOB.gang_name_pool))
GLOB.gang_name_pool -= name
Expand Down

0 comments on commit 801dc2b

Please sign in to comment.