Update research.dm

This commit is contained in:
Trilbyspaceclone
2020-05-12 14:22:05 -04:00
committed by GitHub
parent 0b03958136
commit 88394151d8
+5 -1
View File
@@ -306,7 +306,11 @@ SUBSYSTEM_DEF(research)
for(var/A in subtypesof(/obj/item/seeds))
var/obj/item/seeds/S = A
var/list/L = list()
L[TECHWEB_POINT_TYPE_GENERIC] = 50 + initial(S.rarity) * 2
//First we get are yield and rarity and times it by two
//Then we subtract production and maturation, making it so faster growing plants are better for RnD
//Then we add in lifespan and potency,
//A basic seed can be worth 248 points if its the best it can be.
L[TECHWEB_POINT_TYPE_GENERIC] = 50 + initial(((S.rarity + S.yield) * 2) - S.maturation - S.production + S.lifespan + S.potency)
techweb_point_items[S] = L
return ..()