mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-06 22:13:38 +01:00
04ba5c1cc9
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
27 lines
867 B
Plaintext
27 lines
867 B
Plaintext
/obj/item/seeds/nymph
|
|
name = "pack of diona nymph seeds"
|
|
desc = "These seeds grow into diona nymphs."
|
|
icon_state = "seed-replicapod"
|
|
species = "replicapod"
|
|
plantname = "Nymph Pod"
|
|
product = /obj/item/reagent_containers/food/snacks/grown/nymph_pod
|
|
lifespan = 50
|
|
endurance = 8
|
|
maturation = 10
|
|
production = 1
|
|
yield = 1
|
|
reagents_add = list("plantmatter" = 0.1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/grown/nymph_pod
|
|
seed = /obj/item/seeds/nymph
|
|
name = "nymph pod"
|
|
desc = "A peculiar wriggling pod with a grown nymph inside. Crack it open to let the nymph out."
|
|
icon_state = "mushy"
|
|
bitesize_mod = 2
|
|
|
|
/obj/item/reagent_containers/food/snacks/grown/nymph_pod/attack_self(mob/user)
|
|
new /mob/living/simple_animal/diona(get_turf(user))
|
|
to_chat(user, "<span class='notice'>You crack open [src] letting the nymph out.</span>")
|
|
user.drop_item()
|
|
qdel(src)
|