mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-28 18:11:16 +00:00
* Icons folder cleaning wave two * Merge conflict resolution * Modular path hell * hmm * Update 2022-10.yml * Another modular thing --------- Co-authored-by: YesterdaysPromise <122572637+YesterdaysPromise@users.noreply.github.com> Co-authored-by: Giz <vinylspiders@gmail.com>
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
// Pineapple!
|
|
/obj/item/seeds/pineapple
|
|
name = "pack of pineapple seeds"
|
|
desc = "Oooooooooooooh!"
|
|
icon_state = "seed-pineapple"
|
|
species = "pineapple"
|
|
plantname = "Pineapple Plant"
|
|
product = /obj/item/food/grown/pineapple
|
|
lifespan = 40
|
|
endurance = 30
|
|
growthstages = 3
|
|
growing_icon = 'icons/obj/service/hydroponics/growing_fruits.dmi'
|
|
genes = list(/datum/plant_gene/trait/repeated_harvest, /datum/plant_gene/trait/juicing)
|
|
mutatelist = list(/obj/item/seeds/apple)
|
|
reagents_add = list(/datum/reagent/consumable/nutriment/vitamin = 0.02, /datum/reagent/consumable/nutriment = 0.2, /datum/reagent/water = 0.04)
|
|
graft_gene = /datum/plant_gene/trait/juicing
|
|
|
|
/obj/item/food/grown/pineapple
|
|
seed = /obj/item/seeds/pineapple
|
|
name = "pineapples"
|
|
desc = "Blorble."
|
|
icon_state = "pineapple"
|
|
bite_consumption_mod = 2
|
|
force = 4
|
|
throwforce = 8
|
|
hitsound = 'sound/weapons/bladeslice.ogg'
|
|
attack_verb_continuous = list("stings", "pines")
|
|
attack_verb_simple = list("sting", "pine")
|
|
throw_speed = 1
|
|
throw_range = 5
|
|
w_class = WEIGHT_CLASS_NORMAL
|
|
foodtypes = FRUIT | PINEAPPLE
|
|
juice_results = list(/datum/reagent/consumable/pineapplejuice = 0)
|
|
tastes = list("pineapple" = 1)
|
|
wine_power = 40
|
|
|
|
|
|
/obj/item/food/grown/pineapple/make_processable()
|
|
AddElement(/datum/element/processable, TOOL_KNIFE, /obj/item/food/pineappleslice, 3, 15, screentip_verb = "Cut")
|