mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 19:22:56 +00:00
Merge branch 'master' of https://github.com/PolarisSS13/Polaris into rings
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/obj/machinery/biogenerator
|
/obj/machinery/biogenerator
|
||||||
name = "Biogenerator"
|
name = "biogenerator"
|
||||||
desc = ""
|
desc = ""
|
||||||
icon = 'icons/obj/biogenerator.dmi'
|
icon = 'icons/obj/biogenerator.dmi'
|
||||||
icon_state = "biogen-stand"
|
icon_state = "biogen-stand"
|
||||||
@@ -115,6 +115,7 @@
|
|||||||
dat += "<A href='?src=\ref[src];action=create;item=tbelt;cost=300'>Utility belt</A> <FONT COLOR=blue>([round(300/build_eff)])</FONT><BR>"
|
dat += "<A href='?src=\ref[src];action=create;item=tbelt;cost=300'>Utility belt</A> <FONT COLOR=blue>([round(300/build_eff)])</FONT><BR>"
|
||||||
dat += "<A href='?src=\ref[src];action=create;item=satchel;cost=400'>Leather Satchel</A> <FONT COLOR=blue>([round(400/build_eff)])</FONT><BR>"
|
dat += "<A href='?src=\ref[src];action=create;item=satchel;cost=400'>Leather Satchel</A> <FONT COLOR=blue>([round(400/build_eff)])</FONT><BR>"
|
||||||
dat += "<A href='?src=\ref[src];action=create;item=cashbag;cost=400'>Cash Bag</A> <FONT COLOR=blue>([round(400/build_eff)])</FONT><BR>"
|
dat += "<A href='?src=\ref[src];action=create;item=cashbag;cost=400'>Cash Bag</A> <FONT COLOR=blue>([round(400/build_eff)])</FONT><BR>"
|
||||||
|
dat += "<A href='?src=\ref[src];action=create;item=chembag;cost=400'>Chemistry Bag</A> <FONT COLOR=blue>([round(400/build_eff)])</FONT><BR>"
|
||||||
dat += "<A href='?src=\ref[src];action=create;item=workboots;cost=400'>Workboots</A> <FONT COLOR=blue>([round(400/build_eff)])</FONT><BR>"
|
dat += "<A href='?src=\ref[src];action=create;item=workboots;cost=400'>Workboots</A> <FONT COLOR=blue>([round(400/build_eff)])</FONT><BR>"
|
||||||
dat += "<A href='?src=\ref[src];action=create;item=leathershoes;cost=400'>Leather Shoes</A> <FONT COLOR=blue>([round(400/build_eff)])</FONT><BR>"
|
dat += "<A href='?src=\ref[src];action=create;item=leathershoes;cost=400'>Leather Shoes</A> <FONT COLOR=blue>([round(400/build_eff)])</FONT><BR>"
|
||||||
|
|
||||||
@@ -219,6 +220,8 @@
|
|||||||
new/obj/item/weapon/storage/backpack/satchel(loc)
|
new/obj/item/weapon/storage/backpack/satchel(loc)
|
||||||
if("cashbag")
|
if("cashbag")
|
||||||
new/obj/item/weapon/storage/bag/cash(loc)
|
new/obj/item/weapon/storage/bag/cash(loc)
|
||||||
|
if("chembag")
|
||||||
|
new/obj/item/weapon/storage/bag/chemistry(loc)
|
||||||
if("monkey")
|
if("monkey")
|
||||||
new/mob/living/carbon/human/monkey(loc)
|
new/mob/living/carbon/human/monkey(loc)
|
||||||
if("workboots")
|
if("workboots")
|
||||||
@@ -271,4 +274,4 @@
|
|||||||
man_rating += P.rating
|
man_rating += P.rating
|
||||||
|
|
||||||
build_eff = man_rating
|
build_eff = man_rating
|
||||||
eat_eff = bin_rating
|
eat_eff = bin_rating
|
||||||
|
|||||||
@@ -248,3 +248,16 @@
|
|||||||
max_w_class = ITEMSIZE_NORMAL
|
max_w_class = ITEMSIZE_NORMAL
|
||||||
w_class = ITEMSIZE_SMALL
|
w_class = ITEMSIZE_SMALL
|
||||||
can_hold = list(/obj/item/weapon/coin,/obj/item/weapon/spacecash)
|
can_hold = list(/obj/item/weapon/coin,/obj/item/weapon/spacecash)
|
||||||
|
|
||||||
|
// -----------------------------
|
||||||
|
// Chemistry Bag
|
||||||
|
// -----------------------------
|
||||||
|
/obj/item/weapon/storage/bag/chemistry
|
||||||
|
name = "chemistry bag"
|
||||||
|
icon = 'icons/obj/storage.dmi'
|
||||||
|
icon_state = "chembag"
|
||||||
|
desc = "A bag for storing pills, patches, and bottles."
|
||||||
|
max_storage_space = 200
|
||||||
|
w_class = ITEMSIZE_LARGE
|
||||||
|
slowdown = 1
|
||||||
|
can_hold = list(/obj/item/weapon/reagent_containers/pill,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/glass/bottle)
|
||||||
|
|||||||
@@ -425,6 +425,8 @@
|
|||||||
new /obj/item/weapon/storage/backpack/chemistry(src)
|
new /obj/item/weapon/storage/backpack/chemistry(src)
|
||||||
new /obj/item/weapon/storage/backpack/satchel/chem(src)
|
new /obj/item/weapon/storage/backpack/satchel/chem(src)
|
||||||
new /obj/item/weapon/storage/backpack/satchel/chem(src)
|
new /obj/item/weapon/storage/backpack/satchel/chem(src)
|
||||||
|
new /obj/item/weapon/storage/bag/chemistry(src)
|
||||||
|
new /obj/item/weapon/storage/bag/chemistry(src)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
@@ -682,4 +684,4 @@
|
|||||||
new /obj/item/clothing/under/gimmick/rank/captain/suit(src)
|
new /obj/item/clothing/under/gimmick/rank/captain/suit(src)
|
||||||
new /obj/item/clothing/under/gimmick/rank/captain/suit/skirt(src)
|
new /obj/item/clothing/under/gimmick/rank/captain/suit/skirt(src)
|
||||||
new /obj/item/clothing/glasses/sunglasses(src)
|
new /obj/item/clothing/glasses/sunglasses(src)
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -81,7 +81,17 @@
|
|||||||
"Sagan",
|
"Sagan",
|
||||||
"Tyson",
|
"Tyson",
|
||||||
"Galilei",
|
"Galilei",
|
||||||
|
"Jans",
|
||||||
|
"Fhriede",
|
||||||
|
"Franklin",
|
||||||
"Tesla",
|
"Tesla",
|
||||||
|
"Curie",
|
||||||
|
"Darwin",
|
||||||
|
"Newton",
|
||||||
|
"Pasteur",
|
||||||
|
"Bell",
|
||||||
|
"Mendel",
|
||||||
|
"Kepler",
|
||||||
"Edision",
|
"Edision",
|
||||||
"Cavendish",
|
"Cavendish",
|
||||||
"Nye",
|
"Nye",
|
||||||
|
|||||||
@@ -212,7 +212,7 @@
|
|||||||
Z << "<B>You are still bound to serve your creator, follow their orders and help them complete their goals at all costs.</B>"
|
Z << "<B>You are still bound to serve your creator, follow their orders and help them complete their goals at all costs.</B>"
|
||||||
Z.cancel_camera()
|
Z.cancel_camera()
|
||||||
qdel(src)
|
qdel(src)
|
||||||
/obj/item/device/soulstone/proc/transfer_soul(var/choice as text, var/target, var/mob/U as mob).
|
/obj/item/device/soulstone/proc/transfer_soul(var/choice as text, var/target, var/mob/U as mob)
|
||||||
switch(choice)
|
switch(choice)
|
||||||
if("VICTIM")
|
if("VICTIM")
|
||||||
transfer_human(target,U)
|
transfer_human(target,U)
|
||||||
|
|||||||
@@ -112,6 +112,8 @@
|
|||||||
user << "<span class='notice'>You set the label to \"[tmp_label]\".</span>"
|
user << "<span class='notice'>You set the label to \"[tmp_label]\".</span>"
|
||||||
label_text = tmp_label
|
label_text = tmp_label
|
||||||
update_name_label()
|
update_name_label()
|
||||||
|
if(istype(W,/obj/item/weapon/storage/bag))
|
||||||
|
..()
|
||||||
|
|
||||||
/obj/item/weapon/reagent_containers/glass/proc/update_name_label()
|
/obj/item/weapon/reagent_containers/glass/proc/update_name_label()
|
||||||
if(label_text == "")
|
if(label_text == "")
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 56 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
Reference in New Issue
Block a user