mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
Removes Partial Credits for Already Discovered Seeds + MoneyTree Potency Edit (#19975)
* Nerfs Seeds & Money Trees * give them the D * REMOVE IT ALL * Update seeds.dm
This commit is contained in:
committed by
oranges
parent
31c1e139c4
commit
ac5bde1a7f
@@ -32,7 +32,5 @@
|
||||
return 0
|
||||
|
||||
var/potDiff = (S.potency - discoveredPlants[S.type])
|
||||
if(potDiff < 1)
|
||||
return round(S.rarity * S.potency / 10)
|
||||
else
|
||||
return round(..() * potDiff)
|
||||
|
||||
return round(..() * potDiff)
|
||||
|
||||
@@ -105,19 +105,19 @@
|
||||
/obj/item/weapon/reagent_containers/food/snacks/grown/shell/moneyfruit/add_juice()
|
||||
..()
|
||||
switch(seed.potency)
|
||||
if(0 to 10)
|
||||
if(0 to 22)
|
||||
trash = /obj/item/stack/spacecash
|
||||
if(11 to 20)
|
||||
if(23 to 42)
|
||||
trash = /obj/item/stack/spacecash/c10
|
||||
if(21 to 30)
|
||||
if(43 to 59)
|
||||
trash = /obj/item/stack/spacecash/c20
|
||||
if(31 to 40)
|
||||
if(60 to 73)
|
||||
trash = /obj/item/stack/spacecash/c50
|
||||
if(41 to 50)
|
||||
if(74 to 84)
|
||||
trash = /obj/item/stack/spacecash/c100
|
||||
if(51 to 60)
|
||||
if(85 to 92)
|
||||
trash = /obj/item/stack/spacecash/c200
|
||||
if(61 to 80)
|
||||
if(93 to 98)
|
||||
trash = /obj/item/stack/spacecash/c500
|
||||
else
|
||||
trash = /obj/item/stack/spacecash/c1000
|
||||
Reference in New Issue
Block a user