mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-19 18:17:52 +01:00
* I am suffering * Alright this should be all now * Fixes CI * I hate the online merge resolver. * This got lost in the merge master * Updatepaths fixed + new added * Contra review * Fixes desserts * Oops * This should fix it * Maybe? * Attempt 3 * Missed conflict * Update code/modules/reagents/chemistry/machinery/reagentgrinder.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * Update code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * Update code/modules/food_and_drinks/food/foods/pizza.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> * Fixes grinders * Adds comment * Warrior review * Warrior + Sirryan review * Update code/modules/food_and_drinks/food_base.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> --------- Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
27 lines
757 B
Plaintext
27 lines
757 B
Plaintext
// Peanuts
|
|
/obj/item/seeds/peanuts
|
|
name = "pack of peanut seeds"
|
|
desc = "These seeds grow into peanuts."
|
|
icon_state = "seed-potato"
|
|
species = "potato"
|
|
plantname = "Peanut Vines"
|
|
product = /obj/item/food/snacks/grown/peanuts
|
|
lifespan = 30
|
|
maturation = 10
|
|
production = 1
|
|
yield = 4
|
|
growthstages = 4
|
|
growing_icon = 'icons/obj/hydroponics/growing_vegetables.dmi'
|
|
icon_grow = "potato-grow"
|
|
icon_dead = "potato-dead"
|
|
genes = list(/datum/plant_gene/trait/repeated_harvest)
|
|
reagents_add = list("plantmatter" = 0.1)
|
|
|
|
/obj/item/food/snacks/grown/peanuts
|
|
seed = /obj/item/seeds/peanuts
|
|
name = "patch of peanuts"
|
|
desc = "Best avoided if you have spess allergies."
|
|
icon_state = "peanuts"
|
|
tastes = list("peanut" = 1, "nuttiness" = 1)
|
|
gender = PLURAL
|