Onions, Food and Plant Tweaks (#4629)

* Onyonyon

* Fixes Potato's and adds Changelog.
This commit is contained in:
SunnyDaise
2018-01-28 00:53:54 +00:00
committed by Atermonera
parent 13310d048c
commit 1f80c3336d
9 changed files with 68 additions and 0 deletions

View File

@@ -965,6 +965,16 @@ I said no!
)
result = /obj/item/weapon/ruinedvirusdish
/datum/recipe/onionrings
fruit = list("onion" = 1)
reagents = list("flour" = 5)
result = /obj/item/weapon/reagent_containers/food/snacks/onionrings
/datum/recipe/onionsoup
fruit = list("onion" = 1)
reagents = list("water" = 10)
result = /obj/item/weapon/reagent_containers/food/snacks/onionsoup
//////////////////////////////////////////
// bs12 food port stuff
//////////////////////////////////////////

View File

@@ -706,6 +706,24 @@
set_trait(TRAIT_PLANT_ICON,"bush2")
set_trait(TRAIT_WATER_CONSUMPTION, 6)
/datum/seed/onion
name = "onion"
seed_name = "onion"
display_name = "onions"
chems = list("nutriment" = list(1,10))
kitchen_tag = "onion"
/datum/seed/onion/New()
..()
set_trait(TRAIT_MATURATION,10)
set_trait(TRAIT_PRODUCTION,1)
set_trait(TRAIT_YIELD,4)
set_trait(TRAIT_POTENCY,10)
set_trait(TRAIT_PRODUCT_ICON,"onion")
set_trait(TRAIT_PRODUCT_COLOUR,"#E0C367")
set_trait(TRAIT_PLANT_ICON,"carrot")
set_trait(TRAIT_WATER_CONSUMPTION, 6)
/datum/seed/soybean
name = "soybean"
seed_name = "soybean"
@@ -910,6 +928,7 @@
/datum/seed/citrus/lemon/New()
..()
set_trait(TRAIT_PRODUCES_POWER,1)
set_trait(TRAIT_PRODUCT_ICON,"lemon")
set_trait(TRAIT_PRODUCT_COLOUR,"#F0E226")
set_trait(TRAIT_FLESH_COLOUR,"#F0E226")
set_trait(TRAIT_IDEAL_LIGHT, 6)

View File

@@ -237,6 +237,9 @@ var/global/list/plant_seed_sprites = list()
/obj/item/seeds/lemonseed
seed_type = "lemon"
/obj/item/seeds/onionseed
seed_type = "onion"
/obj/item/seeds/orangeseed
seed_type = "orange"

View File

@@ -60,6 +60,7 @@
/obj/item/seeds/limeseed = 3,
/obj/item/seeds/mtearseed = 2,
/obj/item/seeds/orangeseed = 3,
/obj/item/seeds/onionseed = 3,
/obj/item/seeds/peanutseed = 3,
/obj/item/seeds/plumpmycelium = 3,
/obj/item/seeds/poppyseed = 3,

View File

@@ -1959,6 +1959,34 @@
reagents.add_reagent("tomatojuice", 10)
bitesize = 3
/obj/item/weapon/reagent_containers/food/snacks/onionsoup
name = "Onion Soup"
desc = "A soup with layers."
icon_state = "onionsoup"
trash = /obj/item/trash/snack_bowl
filling_color = "#E0C367"
center_of_mass = list("x"=16, "y"=7)
nutriment_amt = 5
nutriment_desc = list("onion" = 2, "soup" = 2)
/obj/item/weapon/reagent_containers/food/snacks/onionsoup/New()
..()
bitesize = 3
/obj/item/weapon/reagent_containers/food/snacks/onionrings
name = "Onion Soup"
desc = "Crispy rings."
icon_state = "onionrings"
trash = /obj/item/trash/plate
filling_color = "#E0C367"
center_of_mass = list("x"=16, "y"=7)
nutriment_amt = 5
nutriment_desc = list("onion" = 2)
/obj/item/weapon/reagent_containers/food/snacks/onionrings/New()
..()
bitesize = 2
/obj/item/weapon/reagent_containers/food/snacks/rofflewaffles
name = "Roffle Waffles"
desc = "Waffles from Roffle. Co."

View File

@@ -0,0 +1,7 @@
author: SunnyDaff
delete-after: True
- rscadd: Added new food items.
- rscadd: Added Onions.
- tweak: Changed Apple and Lemon Sprite

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB