added presets, continuing work on research tree

also added a new fatoray sprite, thank you Ambassadoing
This commit is contained in:
Sonoida
2023-03-08 16:15:46 +01:00
parent 12108520f1
commit 8ec0a931f0
5 changed files with 48 additions and 1 deletions
@@ -597,6 +597,45 @@
beakers += B1
beakers += B2
//GS13 - fattening grenade presets
/obj/item/grenade/chem_grenade/lipoifier_strong
name = "lipoifier grenade"
desc = "For when you want everyone in the room to gain a couple hundred pounds."
stage = READY
/obj/item/grenade/chem_grenade/lipoifier_strong/Initialize()
. = ..()
var/obj/item/reagent_containers/glass/beaker/bluespace/B1 = new(src)
var/obj/item/reagent_containers/glass/beaker/bluespace/B2 = new(src)
B1.reagents.add_reagent(/datum/reagent/consumable/lipoifier, 250)
B1.reagents.add_reagent(/datum/reagent/potassium, 40)
B2.reagents.add_reagent(/datum/reagent/phosphorus, 40)
B2.reagents.add_reagent(/datum/reagent/consumable/sugar, 40)
beakers += B1
beakers += B2
/obj/item/grenade/chem_grenade/lipoifier_weak
name = "lipoifier grenade"
desc = "For when you want everyone in the room to gain a couple dozen pounds."
stage = READY
/obj/item/grenade/chem_grenade/lipoifier_weak/Initialize()
. = ..()
var/obj/item/reagent_containers/glass/beaker/large/B1 = new(src)
var/obj/item/reagent_containers/glass/beaker/large/B2 = new(src)
B1.reagents.add_reagent(/datum/reagent/consumable/lipoifier, 40)
B1.reagents.add_reagent(/datum/reagent/potassium, 20)
B2.reagents.add_reagent(/datum/reagent/phosphorus, 20)
B2.reagents.add_reagent(/datum/reagent/consumable/sugar, 20)
beakers += B1
beakers += B2
#undef READY
#undef WIRED
#undef EMPTY
@@ -290,7 +290,7 @@ GLOBAL_LIST_INIT(bananium_recipes, list ( \
sheettype = "calorite"
materials = list(MAT_CALORITE=MINERAL_MATERIAL_AMOUNT)
novariants = TRUE
grind_results = list(/datum/reagent/consumable/lipoifier = 10)
grind_results = list(/datum/reagent/consumable/lipoifier = 5)
point_value = 40
merge_type = /obj/item/stack/sheet/mineral/calorite
@@ -254,6 +254,12 @@
/obj/item/reagent_containers/glass/beaker/synthflesh
list_reagents = list(/datum/reagent/medicine/synthflesh = 50)
/obj/item/reagent_containers/glass/beaker/lipoifier
list_reagents = list(/datum/reagent/consumable/lipoifier = 50) //GS13
/obj/item/reagent_containers/glass/beaker/cornoil
list_reagents = list(/datum/reagent/consumable/cornoil = 50) //GS13
/obj/item/reagent_containers/glass/bucket
name = "bucket"
desc = "It's a bucket."
@@ -1158,7 +1158,9 @@
prereq_ids = list("biotech") //remember to add "engineering"
design_ids = list("alien_scalpel")
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 10)
boost_item_paths = list(/obj/item/gun/energy/fatoray)
export_price = 5000
hidden = TRUE
/datum/techweb_node/nutri_tools
id = "nutritech_tools"