adds gnomes. (#6595)

* adds gnomes

* Makes the house nice and bright.

* copypasta error

* Odd

* makes gnomes adminspawn only.

Co-authored-by: KitKetKetrai <49008286+KitKetKetrai@users.noreply.github.com>
This commit is contained in:
Ketrai
2020-01-08 13:47:41 -05:00
committed by VirgoBot
co-authored by KitKetKetrai
parent 6f24070dbd
commit 85667c2a9b
6 changed files with 39 additions and 0 deletions
+26
View File
@@ -1463,3 +1463,29 @@
set_trait(TRAIT_YIELD,-1)
set_trait(TRAIT_SPREAD,2)
set_trait(TRAIT_POTENCY,50)
// Gnomes
/datum/seed/gnomes
name = "gnomes"
seed_name = "gnomes"
display_name = "gnomes"
force_layer = 3
chems = list("magicdust" = list(5,20))
/datum/seed/gnomes/New()
..()
set_trait(TRAIT_HARVEST_REPEAT,1)
set_trait(TRAIT_PLANT_ICON,"gnomes")
set_trait(TRAIT_PRODUCT_ICON,"gnomes")
set_trait(TRAIT_PRODUCT_COLOUR,"")
set_trait(TRAIT_FLESH_COLOUR,"")
set_trait(TRAIT_PLANT_COLOUR,"")
set_trait(TRAIT_BIOLUM_COLOUR,"#fff200")
set_trait(TRAIT_MATURATION,8)
set_trait(TRAIT_PRODUCTION,6)
set_trait(TRAIT_BIOLUM,1)
set_trait(TRAIT_YIELD,2)
set_trait(TRAIT_SPREAD,1)
set_trait(TRAIT_POTENCY,10)
set_trait(TRAIT_REQUIRES_NUTRIENTS,0)
set_trait(TRAIT_REQUIRES_WATER,0)
+3
View File
@@ -322,3 +322,6 @@ GLOBAL_LIST_BOILERPLATE(all_seed_packs, /obj/item/seeds)
/obj/item/seeds/rose/blood
seed_type = "bloodrose"
/obj/item/seeds/gnomes
seed_type = "gnomes"
@@ -3526,3 +3526,13 @@
glass_name = "fusionnaire"
glass_desc = "A relatively new cocktail, mostly served in the bars of NanoTrasen owned stations."
/datum/reagent/nutriment/magicdust
name = "Magic Dust"
id = "magicdust"
description = "A dust harvested from gnomes, aptly named by pre-industrial civilizations."
taste_description = "something tingly"
taste_mult = 2
reagent_state = LIQUID
nutriment_factor = 40 //very filling
color = "#d169b2"