mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-12 16:44:43 +01:00
bb91185a3a
## About The Pull Request https://github.com/user-attachments/assets/f35be993-66b2-448f-953b-4b2ec9a7b8f6 ## Changelog 🆑 sound: added more sounds for knives sound: added more sounds for pots sound: added more sounds for trays sound: added more sounds for cutlery sound: added more sounds for rolling pins /🆑
87 lines
3.2 KiB
Plaintext
87 lines
3.2 KiB
Plaintext
// Apple
|
|
/obj/item/seeds/apple
|
|
name = "apple seed pack"
|
|
desc = "These seeds grow into apple trees."
|
|
icon_state = "seed-apple"
|
|
species = "apple"
|
|
plantname = "Apple Tree"
|
|
product = /obj/item/food/grown/apple
|
|
lifespan = 55
|
|
endurance = 35
|
|
yield = 5
|
|
growing_icon = 'icons/obj/service/hydroponics/growing_fruits.dmi'
|
|
icon_grow = "apple-grow"
|
|
icon_dead = "apple-dead"
|
|
genes = list(/datum/plant_gene/trait/repeated_harvest, /datum/plant_gene/trait/one_bite)
|
|
mutatelist = list(/obj/item/seeds/apple/gold)
|
|
reagents_add = list(/datum/reagent/consumable/nutriment/vitamin = 0.04, /datum/reagent/consumable/nutriment = 0.1)
|
|
|
|
/obj/item/food/grown/apple
|
|
seed = /obj/item/seeds/apple
|
|
name = "apple"
|
|
desc = "It's a little piece of Eden."
|
|
icon_state = "apple"
|
|
foodtypes = FRUIT
|
|
juice_typepath = /datum/reagent/consumable/applejuice
|
|
tastes = list("apple" = 1)
|
|
distill_reagent = /datum/reagent/consumable/ethanol/hcider
|
|
|
|
/obj/item/food/grown/apple/make_processable()
|
|
AddElement(/datum/element/processable, TOOL_KNIFE, /obj/item/food/appleslice, 5, 20, screentip_verb = "Slice", sound_to_play = SFX_KNIFE_SLICE)
|
|
|
|
/obj/item/food/grown/apple/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum)
|
|
. = ..()
|
|
if (.) //it's been caught.
|
|
return
|
|
if (!ishuman(hit_atom))
|
|
return
|
|
var/mob/living/carbon/human/einstein = hit_atom
|
|
var/obj/item/organ/liver/liver_organ = einstein.get_organ_slot(ORGAN_SLOT_LIVER)
|
|
if (isnull(liver_organ))
|
|
return
|
|
if (HAS_TRAIT(liver_organ, TRAIT_MEDICAL_METABOLISM))
|
|
einstein.apply_damage(2, BRUTE, throwingdatum.target_zone)
|
|
else if (HAS_TRAIT(liver_organ, TRAIT_BALLMER_SCIENTIST) && throwingdatum.target_zone == BODY_ZONE_HEAD && prob(2))
|
|
gravity_reminder(einstein)
|
|
|
|
/obj/item/food/grown/apple/onZImpact(turf/impacted_turf, levels, impact_flags)
|
|
. = ..()
|
|
var/mob/living/carbon/human/einstein = locate(/mob/living/carbon/human) in impacted_turf
|
|
if (isnull(einstein))
|
|
return
|
|
var/obj/item/organ/liver/liver_organ = einstein.get_organ_slot(ORGAN_SLOT_LIVER)
|
|
if (liver_organ && HAS_TRAIT(liver_organ, TRAIT_BALLMER_SCIENTIST) && prob(40))
|
|
gravity_reminder(einstein)
|
|
|
|
/// Provide an important insight
|
|
/obj/item/food/grown/apple/proc/gravity_reminder(mob/living/einstein)
|
|
einstein.do_alert_animation()
|
|
playsound(einstein, 'sound/machines/chime.ogg', 50, TRUE)
|
|
einstein.say(pick_list_replacements(VISTA_FILE, "ballmer_good_msg"), forced = "apple inspiration")
|
|
|
|
// Gold Apple
|
|
/obj/item/seeds/apple/gold
|
|
name = "golden apple seed pack"
|
|
desc = "These seeds grow into golden apple trees. Good thing there are no firebirds in space."
|
|
icon_state = "seed-goldapple"
|
|
species = "goldapple"
|
|
plantname = "Golden Apple Tree"
|
|
product = /obj/item/food/grown/apple/gold
|
|
maturation = 10
|
|
production = 10
|
|
genes = list(/datum/plant_gene/trait/repeated_harvest)
|
|
mutatelist = null
|
|
reagents_add = list(/datum/reagent/gold = 0.2, /datum/reagent/consumable/nutriment/vitamin = 0.04, /datum/reagent/consumable/nutriment = 0.1)
|
|
rarity = 40 // Alchemy!
|
|
|
|
/obj/item/food/grown/apple/gold/make_processable()
|
|
return // You're going to break your knife!
|
|
|
|
/obj/item/food/grown/apple/gold
|
|
seed = /obj/item/seeds/apple/gold
|
|
name = "golden apple"
|
|
desc = "Emblazoned upon the apple is the word 'Kallisti'."
|
|
icon_state = "goldapple"
|
|
distill_reagent = null
|
|
wine_power = 50
|