A new skrellian plant, and associated stuff (#6340)

Adds dyn, a Skrellian herb. Renowned as a medicine, its juice has mild anti-toxin properties identical to how powerful tea was before Burger nerfed it; lower than tea because Arrow considered old tea to be too OP, and any beverages made from it do too. Seeds are available both in the garden and hydroponics, and the plant may occasionally contain actual dylovene in it.
The new drinks are the raw juice of the herb, a tea (1 juice to 4 water), and an icy/fizzy iced tea thing (1 juice to 2 ice to 2 soda water). The last comes as a soda can in the vendor, and a carton of juice is available at the bartender's boozemat.
This is the first in a series of PRs expanding upon skrellian cuisine/drinks.
This commit is contained in:
VTCobaltblood
2019-05-02 00:44:53 +03:00
committed by Erki
parent 9f76f302ca
commit a0045fdb86
14 changed files with 149 additions and 6 deletions

View File

@@ -1332,4 +1332,22 @@
set_trait(TRAIT_PRODUCT_ICON,"bulb")
set_trait(TRAIT_PRODUCT_COLOUR,"#ffeedd")
set_trait(TRAIT_PLANT_ICON,"stalk")
set_trait(TRAIT_WATER_CONSUMPTION, 5)
set_trait(TRAIT_WATER_CONSUMPTION, 5)
/datum/seed/dyn
name = "dyn"
seed_name = "dyn"
display_name = "dyn bush"
mutants = null
chems = list("dynjuice" = list(2,2), "dylovene" = list(0,1))
kitchen_tag = "dyn leaf"
/datum/seed/dyn/setup_traits()
..()
set_trait(TRAIT_MATURATION,10)
set_trait(TRAIT_PRODUCTION,10)
set_trait(TRAIT_YIELD,3)
set_trait(TRAIT_POTENCY,10)
set_trait(TRAIT_PRODUCT_ICON,"leaves")
set_trait(TRAIT_PRODUCT_COLOUR,"#00e0e0")
set_trait(TRAIT_PLANT_ICON,"bush8")