mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-21 07:32:35 +00:00
Merge pull request #4145 from MisterLayne/GimmeDemMaterials_BORG
Ends organic bias.
This commit is contained in:
@@ -417,6 +417,8 @@ var/global/list/robot_modules = list(
|
|||||||
var/datum/matter_synth/metal = new /datum/matter_synth/metal(40000)
|
var/datum/matter_synth/metal = new /datum/matter_synth/metal(40000)
|
||||||
var/datum/matter_synth/glass = new /datum/matter_synth/glass(40000)
|
var/datum/matter_synth/glass = new /datum/matter_synth/glass(40000)
|
||||||
var/datum/matter_synth/plasteel = new /datum/matter_synth/plasteel(20000)
|
var/datum/matter_synth/plasteel = new /datum/matter_synth/plasteel(20000)
|
||||||
|
var/datum/matter_synth/wood = new /datum/matter_synth/wood(40000)
|
||||||
|
var/datum/matter_synth/plastic = new /datum/matter_synth/plastic(40000)
|
||||||
|
|
||||||
var/datum/matter_synth/wire = new /datum/matter_synth/wire()
|
var/datum/matter_synth/wire = new /datum/matter_synth/wire()
|
||||||
synths += metal
|
synths += metal
|
||||||
@@ -445,9 +447,9 @@ var/global/list/robot_modules = list(
|
|||||||
C.synths = list(wire)
|
C.synths = list(wire)
|
||||||
src.modules += C
|
src.modules += C
|
||||||
|
|
||||||
var/obj/item/stack/material/cyborg/plasteel/P = new (src)
|
var/obj/item/stack/material/cyborg/plasteel/PS = new (src)
|
||||||
P.synths = list(plasteel)
|
PS.synths = list(plasteel)
|
||||||
src.modules += P
|
src.modules += PS
|
||||||
|
|
||||||
var/obj/item/stack/tile/floor/cyborg/S = new /obj/item/stack/tile/floor/cyborg(src)
|
var/obj/item/stack/tile/floor/cyborg/S = new /obj/item/stack/tile/floor/cyborg(src)
|
||||||
S.synths = list(metal)
|
S.synths = list(metal)
|
||||||
@@ -457,6 +459,18 @@ var/global/list/robot_modules = list(
|
|||||||
RG.synths = list(metal, glass)
|
RG.synths = list(metal, glass)
|
||||||
src.modules += RG
|
src.modules += RG
|
||||||
|
|
||||||
|
var/obj/item/stack/tile/wood/cyborg/WT = new /obj/item/stack/tile/wood/cyborg(src)
|
||||||
|
WT.synths = list(wood)
|
||||||
|
src.modules += WT
|
||||||
|
|
||||||
|
var/obj/item/stack/material/cyborg/wood/W = new (src)
|
||||||
|
W.synths = list(wood)
|
||||||
|
src.modules += W
|
||||||
|
|
||||||
|
var/obj/item/stack/material/cyborg/plastic/PL = new (src)
|
||||||
|
PL.synths = list(plastic)
|
||||||
|
src.modules += PL
|
||||||
|
|
||||||
/obj/item/weapon/robot_module/robot/security
|
/obj/item/weapon/robot_module/robot/security
|
||||||
name = "security robot module"
|
name = "security robot module"
|
||||||
channels = list("Security" = 1)
|
channels = list("Security" = 1)
|
||||||
|
|||||||
Reference in New Issue
Block a user