From e5754704d4f5d134088f23752c07717d499143bd Mon Sep 17 00:00:00 2001 From: Chubbygummibear Date: Thu, 9 Sep 2021 00:36:40 -0700 Subject: [PATCH] rarity schmarity --- code/modules/hydroponics/grown/ambrosia.dm | 4 ++-- code/modules/hydroponics/grown/cereals.dm | 2 ++ code/modules/hydroponics/grown/citrus.dm | 2 ++ code/modules/hydroponics/grown/cocoa_vanilla.dm | 1 + code/modules/hydroponics/grown/cotton.dm | 3 ++- code/modules/hydroponics/grown/eggplant.dm | 1 + code/modules/hydroponics/grown/flowers.dm | 3 +++ code/modules/hydroponics/grown/misc.dm | 2 ++ code/modules/hydroponics/grown/onion.dm | 1 + code/modules/hydroponics/grown/potato.dm | 1 + code/modules/hydroponics/grown/root.dm | 2 ++ 11 files changed, 19 insertions(+), 3 deletions(-) diff --git a/code/modules/hydroponics/grown/ambrosia.dm b/code/modules/hydroponics/grown/ambrosia.dm index 1364c81d8183..a30e505e8a7e 100644 --- a/code/modules/hydroponics/grown/ambrosia.dm +++ b/code/modules/hydroponics/grown/ambrosia.dm @@ -43,7 +43,7 @@ product = /obj/item/reagent_containers/food/snacks/grown/ambrosia/deus mutatelist = list(/obj/item/seeds/ambrosia/gaia) reagents_add = list(/datum/reagent/medicine/omnizine = 0.15, /datum/reagent/medicine/synaptizine = 0.15, /datum/reagent/drug/space_drugs = 0.1, /datum/reagent/consumable/nutriment = 0.05) - rarity = 40 + rarity = 30 /obj/item/reagent_containers/food/snacks/grown/ambrosia/deus seed = /obj/item/seeds/ambrosia/deus @@ -63,7 +63,7 @@ product = /obj/item/reagent_containers/food/snacks/grown/ambrosia/gaia mutatelist = list(/obj/item/seeds/ambrosia/deus) reagents_add = list(/datum/reagent/medicine/earthsblood = 0.05, /datum/reagent/consumable/nutriment = 0.06) - rarity = 30 //These are some pretty good plants right here + rarity = 40 //These are some pretty good plants right here genes = list() weed_rate = 4 weed_chance = 100 diff --git a/code/modules/hydroponics/grown/cereals.dm b/code/modules/hydroponics/grown/cereals.dm index f4520d7fcfbb..e8fea9ac74c1 100644 --- a/code/modules/hydroponics/grown/cereals.dm +++ b/code/modules/hydroponics/grown/cereals.dm @@ -35,6 +35,7 @@ plantname = "Oat Stalks" product = /obj/item/reagent_containers/food/snacks/grown/oat mutatelist = list() + rarity = 10 /obj/item/reagent_containers/food/snacks/grown/oat seed = /obj/item/seeds/wheat/oat @@ -82,6 +83,7 @@ plantname = "Meatwheat" product = /obj/item/reagent_containers/food/snacks/grown/meatwheat mutatelist = list() + rarity = 20 //it's literally growing meat, this is a bit of a standout /obj/item/reagent_containers/food/snacks/grown/meatwheat name = "meatwheat" diff --git a/code/modules/hydroponics/grown/citrus.dm b/code/modules/hydroponics/grown/citrus.dm index b586bc1c2aee..c63f5fdad773 100644 --- a/code/modules/hydroponics/grown/citrus.dm +++ b/code/modules/hydroponics/grown/citrus.dm @@ -103,6 +103,7 @@ endurance = 45 yield = 4 reagents_add = list(/datum/reagent/consumable/nutriment = 0.05) + rarity = 20 /obj/item/reagent_containers/food/snacks/grown/firelemon seed = /obj/item/seeds/firelemon @@ -175,6 +176,7 @@ icon_dead = "lime-dead" genes = list(/datum/plant_gene/trait/repeated_harvest) reagents_add = list(/datum/reagent/consumable/nutriment = 0.05) + rarity = 30 /obj/item/reagent_containers/food/snacks/grown/citrus/orange_3d seed = /obj/item/seeds/orange_3d diff --git a/code/modules/hydroponics/grown/cocoa_vanilla.dm b/code/modules/hydroponics/grown/cocoa_vanilla.dm index e84a913c2da6..a652c7dd63b9 100644 --- a/code/modules/hydroponics/grown/cocoa_vanilla.dm +++ b/code/modules/hydroponics/grown/cocoa_vanilla.dm @@ -40,6 +40,7 @@ genes = list(/datum/plant_gene/trait/repeated_harvest) mutatelist = list() reagents_add = list(/datum/reagent/consumable/vanilla = 0.25, /datum/reagent/consumable/nutriment = 0.1) + rarity = 10 /obj/item/reagent_containers/food/snacks/grown/vanillapod seed = /obj/item/seeds/cocoapod/vanillapod diff --git a/code/modules/hydroponics/grown/cotton.dm b/code/modules/hydroponics/grown/cotton.dm index a3ac7d33be16..812544ea6c0a 100644 --- a/code/modules/hydroponics/grown/cotton.dm +++ b/code/modules/hydroponics/grown/cotton.dm @@ -63,6 +63,7 @@ growthstages = 3 growing_icon = 'icons/obj/hydroponics/growing.dmi' icon_dead = "cotton-dead" + rarity = 20 /obj/item/grown/cotton/durathread seed = /obj/item/seeds/cotton/durathread @@ -76,4 +77,4 @@ throw_range = 3 attack_verb = list("bashed", "battered", "bludgeoned", "whacked") cotton_type = /obj/item/stack/sheet/cotton/durathread - cotton_name = "raw durathread" \ No newline at end of file + cotton_name = "raw durathread" diff --git a/code/modules/hydroponics/grown/eggplant.dm b/code/modules/hydroponics/grown/eggplant.dm index e635285ed05b..11b9bd7d49d9 100644 --- a/code/modules/hydroponics/grown/eggplant.dm +++ b/code/modules/hydroponics/grown/eggplant.dm @@ -37,6 +37,7 @@ production = 12 mutatelist = list() reagents_add = list(/datum/reagent/consumable/nutriment = 0.1) + rarity = 10 /obj/item/reagent_containers/food/snacks/grown/shell/eggy seed = /obj/item/seeds/eggplant/eggy diff --git a/code/modules/hydroponics/grown/flowers.dm b/code/modules/hydroponics/grown/flowers.dm index 8e57bde1d510..514902101514 100644 --- a/code/modules/hydroponics/grown/flowers.dm +++ b/code/modules/hydroponics/grown/flowers.dm @@ -37,6 +37,7 @@ plantname = "Lily Plants" product = /obj/item/reagent_containers/food/snacks/grown/poppy/lily mutatelist = list(/obj/item/seeds/bee_balm, /obj/item/seeds/poppy/lily/trumpet) + rarity = 10 /obj/item/reagent_containers/food/snacks/grown/poppy/lily seed = /obj/item/seeds/poppy/lily @@ -87,6 +88,7 @@ plantname = "Geranium Plants" product = /obj/item/reagent_containers/food/snacks/grown/poppy/geranium mutatelist = list() + rarity = 10 /obj/item/reagent_containers/food/snacks/grown/poppy/geranium seed = /obj/item/seeds/poppy/geranium @@ -266,6 +268,7 @@ icon_dead = "bee_balm-dead" mutatelist = list(/obj/item/seeds/poppy/geranium, /obj/item/seeds/bee_balm/honey) //Lower odds of becoming honey reagents_add = list(/datum/reagent/medicine/spaceacillin = 0.1, /datum/reagent/space_cleaner/sterilizine = 0.05) + rarity = 20 /obj/item/reagent_containers/food/snacks/grown/bee_balm seed = /obj/item/seeds/bee_balm diff --git a/code/modules/hydroponics/grown/misc.dm b/code/modules/hydroponics/grown/misc.dm index 2aa31b96e537..01169b32fcf0 100644 --- a/code/modules/hydroponics/grown/misc.dm +++ b/code/modules/hydroponics/grown/misc.dm @@ -39,6 +39,7 @@ growing_icon = 'icons/obj/hydroponics/growing_flowers.dmi' genes = list() mutatelist = list() + rarity = 20 //atmospheric anomaly plant gets a little bit better rarity /obj/item/seeds/starthistle/corpse_flower/pre_attack(obj/machinery/hydroponics/I) if(istype(I, /obj/machinery/hydroponics)) @@ -80,6 +81,7 @@ genes = list(/datum/plant_gene/trait/plant_type/weed_hardy) mutatelist = list() reagents_add = list(/datum/reagent/consumable/nutriment = 0.05, /datum/reagent/medicine/silibinin = 0.1) + rarity = 10 /obj/item/reagent_containers/food/snacks/grown/galaxythistle seed = /obj/item/seeds/galaxythistle diff --git a/code/modules/hydroponics/grown/onion.dm b/code/modules/hydroponics/grown/onion.dm index 56b1f9e0a604..3a1d08efa28a 100644 --- a/code/modules/hydroponics/grown/onion.dm +++ b/code/modules/hydroponics/grown/onion.dm @@ -37,6 +37,7 @@ weed_chance = 1 product = /obj/item/reagent_containers/food/snacks/grown/onion/red reagents_add = list(/datum/reagent/consumable/nutriment = 0.1, /datum/reagent/consumable/tearjuice = 0.05) + rarity = 10 /obj/item/reagent_containers/food/snacks/grown/onion/red seed = /obj/item/seeds/onion/red diff --git a/code/modules/hydroponics/grown/potato.dm b/code/modules/hydroponics/grown/potato.dm index 910da7f7d182..bb7b098dfdb3 100644 --- a/code/modules/hydroponics/grown/potato.dm +++ b/code/modules/hydroponics/grown/potato.dm @@ -58,6 +58,7 @@ product = /obj/item/reagent_containers/food/snacks/grown/potato/sweet mutatelist = list() reagents_add = list(/datum/reagent/consumable/sugar = 0.1, /datum/reagent/consumable/nutriment = 0.1) + rarity = 10 /obj/item/reagent_containers/food/snacks/grown/potato/sweet seed = /obj/item/seeds/potato/sweet diff --git a/code/modules/hydroponics/grown/root.dm b/code/modules/hydroponics/grown/root.dm index b2e8e36a5591..deb574a79dfb 100644 --- a/code/modules/hydroponics/grown/root.dm +++ b/code/modules/hydroponics/grown/root.dm @@ -46,6 +46,7 @@ icon_dead = "carrot-dead" mutatelist = list() reagents_add = list(/datum/reagent/consumable/nutriment = 0.05) + rarity = 10 /obj/item/reagent_containers/food/snacks/grown/parsnip seed = /obj/item/seeds/carrot/parsnip @@ -99,6 +100,7 @@ icon_dead = "whitebeet-dead" genes = list(/datum/plant_gene/trait/maxchem) reagents_add = list(/datum/reagent/consumable/nutriment = 0.05) + rarity = 20 //noteworthy for being the usual source of densified chems trait /obj/item/reagent_containers/food/snacks/grown/redbeet seed = /obj/item/seeds/redbeet