mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
Conflicts: baystation12.dme code/__HELPERS/global_lists.dm code/__HELPERS/type2type.dm code/__HELPERS/unsorted.dm code/datums/datumvars.dm code/datums/disease.dm code/datums/organs/organ_external.dm code/datums/supplypacks.dm code/defines/obj.dm code/game/area/areas.dm code/game/atoms.dm code/game/gamemodes/cult/cult_structures.dm code/game/gamemodes/cult/runes.dm code/game/gamemodes/events.dm code/game/gamemodes/events/ninja_equipment.dm code/game/gamemodes/events/space_ninja.dm code/game/gamemodes/game_mode.dm code/game/gamemodes/gameticker.dm code/game/hud.dm code/game/jobs/access.dm code/game/jobs/job/civilian.dm code/game/machinery/alarm.dm code/game/machinery/cloning.dm code/game/machinery/computer/cloning.dm code/game/machinery/computer/medical.dm code/game/machinery/computer/syndicate_shuttle.dm code/game/machinery/telecomms/broadcaster.dm code/game/machinery/telecomms/machine_interactions.dm code/game/objects/effects/decals/contraband.dm code/game/objects/effects/signs.dm code/game/objects/items/devices/PDA/PDA.dm code/game/objects/items/devices/PDA/cart.dm code/game/objects/items/weapons/photography.dm code/game/objects/structures/door_assembly.dm code/game/objects/structures/window.dm code/game/sound.dm code/game/verbs/ooc.dm code/global.dm code/modules/DetectiveWork/detective_work.dm code/modules/DetectiveWork/evidence.dm code/modules/DetectiveWork/footprints_and_rag.dm code/modules/DetectiveWork/scanner.dm code/modules/admin/player_panel.dm code/modules/admin/verbs/adminhelp.dm code/modules/admin/verbs/adminpm.dm code/modules/awaymissions/gateway.dm code/modules/client/client defines.dm code/modules/client/client procs.dm code/modules/client/preferences.dm code/modules/clothing/spacesuits/rig.dm code/modules/mining/machine_processing.dm code/modules/mining/machine_stacking.dm code/modules/mining/mint.dm code/modules/mining/ores_coins.dm code/modules/mining/satchel_ore_boxdm.dm code/modules/mob/living/carbon/alien/alien.dm code/modules/mob/living/carbon/carbon.dm code/modules/mob/living/carbon/carbon_defines.dm code/modules/mob/living/carbon/human/human_damage.dm code/modules/mob/living/carbon/human/life.dm code/modules/mob/living/carbon/human/update_icons.dm code/modules/mob/living/living.dm code/modules/mob/living/say.dm code/modules/mob/mob.dm code/modules/mob/mob_cleanup.dm code/modules/mob/mob_defines.dm code/modules/mob/mob_transformation_simple.dm code/modules/mob/new_player/login.dm code/modules/mob/new_player/new_player.dm code/modules/mob/new_player/preferences_setup.dm code/modules/mob/new_player/savefile.dm code/modules/mob/new_player/sprite_accessories.dm code/modules/paperwork/folders.dm code/modules/paperwork/paper.dm code/modules/paperwork/photocopier.dm code/modules/projectiles/guns/energy/special.dm code/modules/projectiles/guns/projectile/automatic.dm code/setup.dm code/unused/mining/datum_processing_recipe.dm code/unused/powerarmor/powerarmor.dm code/world.dm html/changelog.html icons/effects/96x96.dmi icons/mob/head.dmi icons/mob/items_lefthand.dmi icons/mob/items_righthand.dmi icons/mob/suit.dmi icons/obj/clothing/hats.dmi icons/obj/clothing/suits.dmi icons/obj/hydroponics.dmi icons/obj/items.dmi icons/turf/areas.dmi icons/turf/walls.dmi maps/RandomZLevels/fileList.txt maps/RandomZLevels/spacebattle.dmm Signed-off-by: Cael_Aislinn <cael_aislinn@yahoo.com.au>
1032 lines
36 KiB
Plaintext
1032 lines
36 KiB
Plaintext
/obj/machinery/hydroponics
|
|
name = "hydroponics tray"
|
|
icon = 'icons/obj/hydroponics.dmi'
|
|
icon_state = "hydrotray3"
|
|
density = 1
|
|
anchored = 1
|
|
var/waterlevel = 100 // The amount of water in the tray (max 100)
|
|
var/nutrilevel = 10 // The amount of nutrient in the tray (max 10)
|
|
var/pestlevel = 0 // The amount of pests in the tray (max 10)
|
|
var/weedlevel = 0 // The amount of weeds in the tray (max 10)
|
|
var/yieldmod = 1 //Modifier to yield
|
|
var/mutmod = 1 //Modifier to mutation chance
|
|
var/toxic = 0 // Toxicity in the tray?
|
|
var/age = 0 // Current age
|
|
var/dead = 0 // Is it dead?
|
|
var/health = 0 // Its health.
|
|
var/lastproduce = 0 // Last time it was harvested
|
|
var/lastcycle = 0 //Used for timing of cycles.
|
|
var/cycledelay = 200 // About 10 seconds / cycle
|
|
var/planted = 0 // Is it occupied?
|
|
var/harvest = 0 //Ready to harvest?
|
|
var/obj/item/seeds/myseed = null // The currently planted seed
|
|
|
|
/obj/machinery/hydroponics/bullet_act(var/obj/item/projectile/Proj) //Works with the Somatoray to modify plant variables.
|
|
if(istype(Proj ,/obj/item/projectile/energy/floramut))
|
|
if(planted)
|
|
mutate()
|
|
else if(istype(Proj ,/obj/item/projectile/energy/florayield))
|
|
if(planted && myseed.yield == 0)//Oh god don't divide by zero you'll doom us all.
|
|
myseed.yield += 1
|
|
//world << "Yield increased by 1, from 0, to a total of [myseed.yield]"
|
|
else if (planted && (prob(1/(myseed.yield * myseed.yield) *100)))//This formula gives you diminishing returns based on yield. 100% with 1 yield, decreasing to 25%, 11%, 6, 4, 2...
|
|
myseed.yield += 1
|
|
//world << "Yield increased by 1, to a total of [myseed.yield]"
|
|
else
|
|
..()
|
|
return
|
|
|
|
obj/machinery/hydroponics/process()
|
|
|
|
if(myseed && (myseed.loc != src))
|
|
myseed.loc = src
|
|
|
|
if(world.time > (lastcycle + cycledelay))
|
|
lastcycle = world.time
|
|
if(planted && !dead)
|
|
// Advance age
|
|
age++
|
|
|
|
//Nutrients//////////////////////////////////////////////////////////////
|
|
// Nutrients deplete slowly
|
|
if(nutrilevel > 0)
|
|
if(prob(50))
|
|
nutrilevel -= 1
|
|
|
|
// Lack of nutrients hurts non-weeds
|
|
if(nutrilevel <= 0 && myseed.plant_type != 1)
|
|
health -= rand(1,3)
|
|
|
|
//Water//////////////////////////////////////////////////////////////////
|
|
// Drink random amount of water
|
|
waterlevel = max(waterlevel - rand(1,6), 0)
|
|
|
|
// If the plant is dry, it loses health pretty fast, unless mushroom
|
|
if(waterlevel <= 10 && myseed.plant_type != 2)
|
|
health -= rand(0,1)
|
|
if(waterlevel <= 0)
|
|
health -= rand(0,2)
|
|
|
|
// Sufficient water level and nutrient level = plant healthy
|
|
else if(waterlevel > 10 && nutrilevel > 0)
|
|
health += rand(1,2)
|
|
if(prob(5)) //5 percent chance the weed population will increase
|
|
weedlevel += 1
|
|
//Toxins/////////////////////////////////////////////////////////////////
|
|
|
|
// Too much toxins cause harm, but when the plant drinks the contaiminated water, the toxins disappear slowly
|
|
if(toxic >= 40 && toxic < 80)
|
|
health -= 1
|
|
toxic -= rand(1,10)
|
|
else if(toxic >= 80) // I don't think it ever gets here tbh unless above is commented out
|
|
health -= 3
|
|
toxic -= rand(1,10)
|
|
else if(toxic < 0) // Make sure it won't go overoboard
|
|
toxic = 0
|
|
|
|
//Pests & Weeds//////////////////////////////////////////////////////////
|
|
|
|
// Too many pests cause the plant to be sick
|
|
if (pestlevel > 10 ) // Make sure it won't go overoboard
|
|
pestlevel = 10
|
|
|
|
else if(pestlevel >= 5)
|
|
health -= 1
|
|
|
|
// If it's a weed, it doesn't stunt the growth
|
|
if(weedlevel >= 5 && myseed.plant_type != 1 )
|
|
health -= 1
|
|
|
|
|
|
//Health & Age///////////////////////////////////////////////////////////
|
|
// Don't go overboard with the health
|
|
if(health > myseed.endurance)
|
|
health = myseed.endurance
|
|
|
|
// Plant dies if health <= 0
|
|
else if(health <= 0)
|
|
dead = 1
|
|
harvest = 0
|
|
weedlevel += 1 // Weeds flourish
|
|
pestlevel = 0 // Pests die
|
|
|
|
// If the plant is too old, lose health fast
|
|
if(age > myseed.lifespan)
|
|
health -= rand(1,5)
|
|
|
|
// Harvest code
|
|
if(age > myseed.production && (age - lastproduce) > myseed.production && (!harvest && !dead))
|
|
for(var/i = 0; i < mutmod; i++)
|
|
if(prob(85))
|
|
mutate()
|
|
else if(prob(30))
|
|
hardmutate()
|
|
else if(prob(5))
|
|
mutatespecie()
|
|
|
|
if(yieldmod > 0 && myseed.yield != -1) // Unharvestable shouldn't be harvested
|
|
harvest = 1
|
|
else
|
|
lastproduce = age
|
|
if(prob(5)) // On each tick, there's a 5 percent chance the pest population will increase
|
|
pestlevel += 1
|
|
else
|
|
if(waterlevel > 10 && nutrilevel > 0 && prob(10)) // If there's no plant, the percentage chance is 10%
|
|
weedlevel += 1
|
|
if(weedlevel > 10)
|
|
weedlevel = 10
|
|
|
|
// Weeeeeeeeeeeeeeedddssss
|
|
|
|
if (weedlevel >= 10 && prob(50)) // At this point the plant is kind of fucked. Weeds can overtake the plant spot.
|
|
if(planted)
|
|
if(myseed.plant_type == 0) // If a normal plant
|
|
weedinvasion()
|
|
else
|
|
weedinvasion() // Weed invasion into empty tray
|
|
updateicon()
|
|
return
|
|
|
|
|
|
|
|
obj/machinery/hydroponics/proc/updateicon()
|
|
//Refreshes the icon and sets the luminosity
|
|
overlays = null
|
|
if(planted)
|
|
if(dead)
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-dead")
|
|
else if(harvest)
|
|
if(myseed.plant_type == 2) // Shrooms don't have a -harvest graphic
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-grow[myseed.growthstages]")
|
|
else
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-harvest")
|
|
else if(age < myseed.maturation)
|
|
var/t_growthstate = ((age / myseed.maturation) * myseed.growthstages ) // Make sure it won't crap out due to HERPDERP 6 stages only
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-grow[round(t_growthstate)]")
|
|
lastproduce = age //Cheating by putting this here, it means that it isn't instantly ready to harvest
|
|
else
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-grow[myseed.growthstages]") // Same
|
|
|
|
if(waterlevel <= 10)
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="over_lowwater3")
|
|
if(nutrilevel <= 2)
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="over_lownutri3")
|
|
if(health <= (myseed.endurance / 2))
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="over_lowhealth3")
|
|
if(weedlevel >= 5)
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="over_alert3")
|
|
if(pestlevel >= 5)
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="over_alert3")
|
|
if(toxic >= 40)
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="over_alert3")
|
|
if(harvest)
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="over_harvest3")
|
|
|
|
if(istype(myseed,/obj/item/seeds/glowshroom))
|
|
SetLuminosity(round(myseed.potency/10))
|
|
else
|
|
SetLuminosity(0)
|
|
|
|
return
|
|
|
|
|
|
|
|
obj/machinery/hydroponics/proc/weedinvasion() // If a weed growth is sufficient, this happens.
|
|
dead = 0
|
|
if(myseed) // In case there's nothing in the tray beforehand
|
|
del(myseed)
|
|
switch(rand(1,18)) // randomly pick predominative weed
|
|
if(16 to 18)
|
|
myseed = new /obj/item/seeds/reishimycelium
|
|
if(14 to 15)
|
|
myseed = new /obj/item/seeds/nettleseed
|
|
if(12 to 13)
|
|
myseed = new /obj/item/seeds/harebell
|
|
if(10 to 11)
|
|
myseed = new /obj/item/seeds/amanitamycelium
|
|
if(8 to 9)
|
|
myseed = new /obj/item/seeds/chantermycelium
|
|
if(6 to 7) // implementation for tower caps still kinda missing ~ Not Anymore! -Cheridan
|
|
myseed = new /obj/item/seeds/towermycelium
|
|
if(4 to 5)
|
|
myseed = new /obj/item/seeds/plumpmycelium
|
|
else
|
|
myseed = new /obj/item/seeds/weeds
|
|
planted = 1
|
|
age = 0
|
|
health = myseed.endurance
|
|
lastcycle = world.time
|
|
harvest = 0
|
|
weedlevel = 0 // Reset
|
|
pestlevel = 0 // Reset
|
|
updateicon()
|
|
visible_message("\blue [src] has been overtaken by [myseed.plantname].")
|
|
|
|
return
|
|
|
|
|
|
obj/machinery/hydroponics/proc/mutate() // Mutates the current seed
|
|
|
|
myseed.lifespan += rand(-2,2)
|
|
if(myseed.lifespan < 10)
|
|
myseed.lifespan = 10
|
|
else if(myseed.lifespan > 30)
|
|
myseed.lifespan = 30
|
|
|
|
myseed.endurance += rand(-5,5)
|
|
if(myseed.endurance < 10)
|
|
myseed.endurance = 10
|
|
else if(myseed.endurance > 100)
|
|
myseed.endurance = 100
|
|
|
|
myseed.production += rand(-1,1)
|
|
if(myseed.production < 2)
|
|
myseed.production = 2
|
|
else if(myseed.production > 10)
|
|
myseed.production = 10
|
|
|
|
if(myseed.yield != -1) // Unharvestable shouldn't suddenly turn harvestable
|
|
myseed.yield += rand(-2,2)
|
|
if(myseed.yield < 0)
|
|
myseed.yield = 0
|
|
else if(myseed.yield > 10)
|
|
myseed.yield = 10
|
|
if(myseed.yield == 0 && myseed.plant_type == 2)
|
|
myseed.yield = 1 // Mushrooms always have a minimum yield of 1.
|
|
|
|
if(myseed.potency != -1) //Not all plants have a potency
|
|
myseed.potency += rand(-25,25)
|
|
if(myseed.potency < 0)
|
|
myseed.potency = 0
|
|
else if(myseed.potency > 100)
|
|
myseed.potency = 100
|
|
return
|
|
|
|
|
|
|
|
obj/machinery/hydroponics/proc/hardmutate() // Strongly mutates the current seed.
|
|
|
|
myseed.lifespan += rand(-4,4)
|
|
if(myseed.lifespan < 10)
|
|
myseed.lifespan = 10
|
|
else if(myseed.lifespan > 30 && !istype(myseed,/obj/item/seeds/glowshroom)) //hack to prevent glowshrooms from always resetting to 30 sec delay
|
|
myseed.lifespan = 30
|
|
|
|
myseed.endurance += rand(-10,10)
|
|
if(myseed.endurance < 10)
|
|
myseed.endurance = 10
|
|
else if(myseed.endurance > 100)
|
|
myseed.endurance = 100
|
|
|
|
myseed.production += rand(-2,2)
|
|
if(myseed.production < 2)
|
|
myseed.production = 2
|
|
else if(myseed.production > 10)
|
|
myseed.production = 10
|
|
|
|
if(myseed.yield != -1) // Unharvestable shouldn't suddenly turn harvestable
|
|
myseed.yield += rand(-4,4)
|
|
if(myseed.yield < 0)
|
|
myseed.yield = 0
|
|
else if(myseed.yield > 10)
|
|
myseed.yield = 10
|
|
if(myseed.yield == 0 && myseed.plant_type == 2)
|
|
myseed.yield = 1 // Mushrooms always have a minimum yield of 1.
|
|
|
|
if(myseed.potency != -1) //Not all plants have a potency
|
|
myseed.potency += rand(-50,50)
|
|
if(myseed.potency < 0)
|
|
myseed.potency = 0
|
|
else if(myseed.potency > 100)
|
|
myseed.potency = 100
|
|
return
|
|
|
|
|
|
|
|
obj/machinery/hydroponics/proc/mutatespecie() // Mutagent produced a new plant!
|
|
|
|
if ( istype(myseed, /obj/item/seeds/nettleseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/deathnettleseed
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/amanitamycelium ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/angelmycelium
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/lemonseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/cashseed
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/ambrosiavulgarisseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/ambrosiadeusseed
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/plumpmycelium ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/walkingmushroommycelium
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/chiliseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/icepepperseed
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/appleseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/goldappleseed
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/berryseed ))
|
|
del(myseed)
|
|
switch(rand(1,100))
|
|
if(1 to 50)
|
|
myseed = new /obj/item/seeds/poisonberryseed
|
|
if(51 to 100)
|
|
myseed = new /obj/item/seeds/glowberryseed
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/poisonberryseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/deathberryseed
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/tomatoseed ))
|
|
del(myseed)
|
|
switch(rand(1,100))
|
|
if(1 to 35)
|
|
myseed = new /obj/item/seeds/bluetomatoseed
|
|
if(36 to 70)
|
|
myseed = new /obj/item/seeds/bloodtomatoseed
|
|
if(71 to 100)
|
|
myseed = new /obj/item/seeds/killertomatoseed
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/bluetomatoseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/bluespacetomatoseed
|
|
|
|
else if ( istype(myseed, /obj/item/seeds/grapeseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/greengrapeseed
|
|
/*
|
|
else if ( istype(myseed, /obj/item/seeds/tomatoseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/gibtomatoseed
|
|
*/
|
|
else if ( istype(myseed, /obj/item/seeds/eggplantseed ))
|
|
del(myseed)
|
|
myseed = new /obj/item/seeds/eggyseed
|
|
|
|
else
|
|
return
|
|
|
|
dead = 0
|
|
hardmutate()
|
|
planted = 1
|
|
age = 0
|
|
health = myseed.endurance
|
|
lastcycle = world.time
|
|
harvest = 0
|
|
weedlevel = 0 // Reset
|
|
|
|
spawn(5) // Wait a while
|
|
updateicon()
|
|
visible_message("\red[src] has suddenly mutated into \blue [myseed.plantname]!")
|
|
|
|
return
|
|
|
|
|
|
|
|
obj/machinery/hydroponics/proc/mutateweed() // If the weeds gets the mutagent instead. Mind you, this pretty much destroys the old plant
|
|
if ( weedlevel > 5 )
|
|
del(myseed)
|
|
var/newWeed = pick(/obj/item/seeds/libertymycelium, /obj/item/seeds/angelmycelium, /obj/item/seeds/deathnettleseed, /obj/item/seeds/kudzuseed)
|
|
myseed = new newWeed
|
|
dead = 0
|
|
hardmutate()
|
|
planted = 1
|
|
age = 0
|
|
health = myseed.endurance
|
|
lastcycle = world.time
|
|
harvest = 0
|
|
weedlevel = 0 // Reset
|
|
|
|
spawn(5) // Wait a while
|
|
updateicon()
|
|
visible_message("\red The mutated weeds in [src] spawned a \blue [myseed.plantname]!")
|
|
else
|
|
usr << "The few weeds in the [src] seem to react, but only for a moment..."
|
|
return
|
|
|
|
|
|
|
|
obj/machinery/hydroponics/proc/plantdies() // OH NOES!!!!! I put this all in one function to make things easier
|
|
health = 0
|
|
dead = 1
|
|
harvest = 0
|
|
updateicon()
|
|
visible_message("\red[src] is looking very unhealthy!")
|
|
return
|
|
|
|
|
|
|
|
obj/machinery/hydroponics/proc/mutatepest() // Until someone makes a spaceworm, this is commented out
|
|
if ( pestlevel > 5 )
|
|
visible_message("The pests seem to behave oddly...")
|
|
// spawn(10)
|
|
// new /obj/effect/alien/spaceworm(loc)
|
|
else
|
|
usr << "The pests seem to behave oddly, but quickly settle down..." //Modified to give a better idea of what's happening when you inject mutagen. There's still nothing proper to spawn here though. -Cheridan
|
|
return
|
|
|
|
|
|
|
|
obj/machinery/hydroponics/attackby(var/obj/item/O as obj, var/mob/user as mob)
|
|
|
|
//Called when mob user "attacks" it with object O
|
|
if (istype(O, /obj/item/weapon/reagent_containers/glass/bucket))
|
|
var/b_amount = O.reagents.get_reagent_amount("water")
|
|
if(b_amount > 0 && waterlevel < 100)
|
|
if(b_amount + waterlevel > 100)
|
|
b_amount = 100 - waterlevel
|
|
O.reagents.remove_reagent("water", b_amount)
|
|
waterlevel += b_amount
|
|
playsound(loc, 'sound/effects/slosh.ogg', 25, 1)
|
|
user << "You fill the [src] with [b_amount] units of water."
|
|
|
|
// Toxicity dilutation code. The more water you put in, the lesser the toxin concentration.
|
|
toxic -= round(b_amount/4)
|
|
if (toxic < 0 ) // Make sure it won't go overoboard
|
|
toxic = 0
|
|
|
|
else if(waterlevel >= 100)
|
|
user << "\red The [src] is already full."
|
|
else
|
|
user << "\red The bucket is not filled with water."
|
|
updateicon()
|
|
|
|
else if ( istype(O, /obj/item/nutrient) )
|
|
var/obj/item/nutrient/myNut = O
|
|
user.u_equip(O)
|
|
nutrilevel = 10
|
|
yieldmod = myNut.yieldmod
|
|
mutmod = myNut.mutmod
|
|
user << "You replace the nutrient solution in the [src]."
|
|
del(O)
|
|
updateicon()
|
|
|
|
else if(istype(O, /obj/item/weapon/reagent_containers/syringe)) // Syringe stuff
|
|
var/obj/item/weapon/reagent_containers/syringe/S = O
|
|
if (planted)
|
|
if (S.mode == 1)
|
|
if(!S.reagents.total_volume)
|
|
user << "\red The syringe is empty."
|
|
return
|
|
user << "\red You inject the [myseed.plantname] with a chemical solution."
|
|
|
|
// There needs to be a good amount of mutagen to actually work
|
|
|
|
if(S.reagents.has_reagent("mutagen", 5))
|
|
switch(rand(100))
|
|
if (91 to 100) plantdies()
|
|
if (81 to 90) mutatespecie()
|
|
if (66 to 80) hardmutate()
|
|
if (41 to 65) mutate()
|
|
if (21 to 41) user << "The plants don't seem to react..."
|
|
if (11 to 20) mutateweed()
|
|
if (1 to 10) mutatepest()
|
|
else user << "Nothing happens..."
|
|
|
|
// Antitoxin binds shit pretty well. So the tox goes significantly down
|
|
if(S.reagents.has_reagent("anti_toxin", 1))
|
|
toxic -= round(S.reagents.get_reagent_amount("anti_toxin")*2)
|
|
|
|
// NIGGA, YOU JUST WENT ON FULL RETARD.
|
|
if(S.reagents.has_reagent("toxin", 1))
|
|
toxic += round(S.reagents.get_reagent_amount("toxin")*2)
|
|
|
|
// Milk is good for humans, but bad for plants. The sugars canot be used by plants, and the milk fat fucks up growth. Not shrooms though. I can't deal with this now...
|
|
if(S.reagents.has_reagent("milk", 1))
|
|
nutrilevel += round(S.reagents.get_reagent_amount("milk")*0.1)
|
|
waterlevel += round(S.reagents.get_reagent_amount("milk")*0.9)
|
|
|
|
// Beer is a chemical composition of alcohol and various other things. It's a shitty nutrient but hey, it's still one. Also alcohol is bad, mmmkay?
|
|
if(S.reagents.has_reagent("beer", 1))
|
|
health -= round(S.reagents.get_reagent_amount("beer")*0.05)
|
|
nutrilevel += round(S.reagents.get_reagent_amount("beer")*0.25)
|
|
waterlevel += round(S.reagents.get_reagent_amount("beer")*0.7)
|
|
|
|
// You're an idiot of thinking that one of the most corrosive and deadly gasses would be beneficial
|
|
if(S.reagents.has_reagent("fluorine", 1))
|
|
health -= round(S.reagents.get_reagent_amount("fluorine")*2)
|
|
toxic += round(S.reagents.get_reagent_amount("flourine")*2.5)
|
|
waterlevel -= round(S.reagents.get_reagent_amount("flourine")*0.5)
|
|
weedlevel -= rand(1,4)
|
|
|
|
// You're an idiot of thinking that one of the most corrosive and deadly gasses would be beneficial
|
|
if(S.reagents.has_reagent("chlorine", 1))
|
|
health -= round(S.reagents.get_reagent_amount("chlorine")*1)
|
|
toxic += round(S.reagents.get_reagent_amount("chlorine")*1.5)
|
|
waterlevel -= round(S.reagents.get_reagent_amount("chlorine")*0.5)
|
|
weedlevel -= rand(1,3)
|
|
|
|
// White Phosphorous + water -> phosphoric acid. That's not a good thing really. Phosphoric salts are beneficial though. And even if the plant suffers, in the long run the tray gets some nutrients. The benefit isn't worth that much.
|
|
if(S.reagents.has_reagent("phosphorus", 1))
|
|
health -= round(S.reagents.get_reagent_amount("phosphorus")*0.75)
|
|
nutrilevel += round(S.reagents.get_reagent_amount("phosphorus")*0.1)
|
|
waterlevel -= round(S.reagents.get_reagent_amount("phosphorus")*0.5)
|
|
weedlevel -= rand(1,2)
|
|
|
|
// Plants should not have sugar, they can't use it and it prevents them getting water/ nutients, it is good for mold though...
|
|
if(S.reagents.has_reagent("sugar", 1))
|
|
weedlevel += rand(1,2)
|
|
pestlevel += rand(1,2)
|
|
nutrilevel+= round(S.reagents.get_reagent_amount("sugar")*0.1)
|
|
|
|
// It is water!
|
|
if(S.reagents.has_reagent("water", 1))
|
|
waterlevel += round(S.reagents.get_reagent_amount("water")*1)
|
|
|
|
// Holy water. Mostly the same as water, it also heals the plant a little with the power of the spirits~
|
|
if(S.reagents.has_reagent("holywater", 1))
|
|
waterlevel += round(S.reagents.get_reagent_amount("holywater")*1)
|
|
health += round(S.reagents.get_reagent_amount("holywater")*0.1)
|
|
|
|
// A variety of nutrients are dissolved in club soda, without sugar. These nutrients include carbon, oxygen, hydrogen, phosphorous, potassium, sulfur and sodium, all of which are needed for healthy plant growth.
|
|
if(S.reagents.has_reagent("sodawater", 1))
|
|
waterlevel += round(S.reagents.get_reagent_amount("sodawater")*1)
|
|
health += round(S.reagents.get_reagent_amount("sodawater")*0.1)
|
|
nutrilevel += round(S.reagents.get_reagent_amount("sodawater")*0.1)
|
|
|
|
// Man, you guys are retards
|
|
if(S.reagents.has_reagent("sacid", 1))
|
|
health -= round(S.reagents.get_reagent_amount("sacid")*1)
|
|
toxic += round(S.reagents.get_reagent_amount("sacid")*1.5)
|
|
weedlevel -= rand(1,2)
|
|
|
|
// SERIOUSLY
|
|
if(S.reagents.has_reagent("pacid", 1))
|
|
health -= round(S.reagents.get_reagent_amount("pacid")*2)
|
|
toxic += round(S.reagents.get_reagent_amount("pacid")*3)
|
|
weedlevel -= rand(1,4)
|
|
|
|
// Plant-B-Gone is just as bad
|
|
if(S.reagents.has_reagent("plantbgone", 1))
|
|
health -= round(S.reagents.get_reagent_amount("plantbgone")*2)
|
|
toxic -= round(S.reagents.get_reagent_amount("plantbgone")*3)
|
|
weedlevel -= rand(4,8)
|
|
|
|
// Healing
|
|
if(S.reagents.has_reagent("cryoxadone", 1))
|
|
health += round(S.reagents.get_reagent_amount("cryoxadone")*3)
|
|
toxic -= round(S.reagents.get_reagent_amount("cryoxadone")*3)
|
|
|
|
// FINALLY IMPLEMENTED, Ammonia is bad ass.
|
|
if(S.reagents.has_reagent("ammonia", 1))
|
|
health += round(S.reagents.get_reagent_amount("ammonia")*0.5)
|
|
nutrilevel += round(S.reagents.get_reagent_amount("ammonia")*1)
|
|
|
|
// FINALLY IMPLEMENTED, This is more bad ass, and pests get hurt by the corrosive nature of it, not the plant.
|
|
if(S.reagents.has_reagent("diethylamine", 1))
|
|
health += round(S.reagents.get_reagent_amount("diethylamine")*1)
|
|
nutrilevel += round(S.reagents.get_reagent_amount("diethylamine")*2)
|
|
pestlevel -= rand(1,2)
|
|
|
|
// Compost, effectively
|
|
if(S.reagents.has_reagent("nutriment", 1))
|
|
health += round(S.reagents.get_reagent_amount("nutriment")*0.5)
|
|
nutrilevel += round(S.reagents.get_reagent_amount("nutriment")*1)
|
|
|
|
// Poor man's mutagen.
|
|
if(S.reagents.has_reagent("radium", 1))
|
|
health -= round(S.reagents.get_reagent_amount("radium")*1.5)
|
|
toxic += round(S.reagents.get_reagent_amount("radium")*2)
|
|
if(S.reagents.has_reagent("radium", 10))
|
|
switch(rand(100))
|
|
if (91 to 100) plantdies()
|
|
if (81 to 90) mutatespecie()
|
|
if (66 to 80) hardmutate()
|
|
if (41 to 65) mutate()
|
|
if (21 to 41) user << "The plants don't seem to react..."
|
|
if (11 to 20) mutateweed()
|
|
if (1 to 10) mutatepest()
|
|
else user << "Nothing happens..."
|
|
|
|
// The best stuff there is. For testing/debugging.
|
|
if(S.reagents.has_reagent("adminordrazine", 1))
|
|
waterlevel += round(S.reagents.get_reagent_amount("adminordrazine")*1)
|
|
health += round(S.reagents.get_reagent_amount("adminordrazine")*1)
|
|
nutrilevel += round(S.reagents.get_reagent_amount("adminordrazine")*1)
|
|
pestlevel -= rand(1,5)
|
|
weedlevel -= rand(1,5)
|
|
if(S.reagents.has_reagent("adminordrazine", 5))
|
|
switch(rand(100))
|
|
if (66 to 100) mutatespecie()
|
|
if (33 to 65) mutateweed()
|
|
if (1 to 32) mutatepest()
|
|
else user << "Nothing happens..."
|
|
|
|
S.reagents.clear_reagents()
|
|
if (weedlevel < 0 ) // The following checks are to prevent the stats from going out of bounds.
|
|
weedlevel = 0
|
|
if (health < 0 )
|
|
health = 0
|
|
if (waterlevel > 100 )
|
|
waterlevel = 100
|
|
if (waterlevel < 0 )
|
|
waterlevel = 0
|
|
if (toxic < 0 )
|
|
toxic = 0
|
|
if (toxic > 100 )
|
|
toxic = 100
|
|
if (pestlevel < 0 )
|
|
pestlevel = 0
|
|
if (nutrilevel > 10 )
|
|
nutrilevel = 10
|
|
else
|
|
user << "You can't get any extract out of this plant."
|
|
else
|
|
user << "There's nothing to apply the solution into."
|
|
updateicon()
|
|
|
|
else if ( istype(O, /obj/item/seeds/) )
|
|
if(!planted)
|
|
user.u_equip(O)
|
|
user << "You plant the [O.name]"
|
|
dead = 0
|
|
myseed = O
|
|
planted = 1
|
|
age = 1
|
|
health = myseed.endurance
|
|
lastcycle = world.time
|
|
O.loc = src
|
|
if((user.client && user.s_active != src))
|
|
user.client.screen -= O
|
|
O.dropped(user)
|
|
updateicon()
|
|
|
|
else
|
|
user << "\red The [src] already has seeds in it!"
|
|
|
|
else if (istype(O, /obj/item/device/analyzer/plant_analyzer))
|
|
if(planted && myseed)
|
|
user << "*** <B>[myseed.plantname]</B> ***" //Carn: now reports the plants growing, not the seeds.
|
|
user << "-Plant Age: \blue [age]"
|
|
user << "-Plant Endurance: \blue [myseed.endurance]"
|
|
user << "-Plant Lifespan: \blue [myseed.lifespan]"
|
|
if(myseed.yield != -1)
|
|
user << "-Plant Yield: \blue [myseed.yield]"
|
|
user << "-Plant Production: \blue [myseed.production]"
|
|
if(myseed.potency != -1)
|
|
user << "-Plant Potency: \blue [myseed.potency]"
|
|
user << "-Weed level: \blue [weedlevel]/10"
|
|
user << "-Pest level: \blue [pestlevel]/10"
|
|
user << "-Toxicity level: \blue [toxic]/100"
|
|
user << "-Water level: \blue [waterlevel]/100"
|
|
user << "-Nutrition level: \blue [nutrilevel]/10"
|
|
user << ""
|
|
else
|
|
user << "<B>No plant found.</B>"
|
|
user << "-Weed level: \blue [weedlevel]/10"
|
|
user << "-Pest level: \blue [pestlevel]/10"
|
|
user << "-Toxicity level: \blue [toxic]/100"
|
|
user << "-Water level: \blue [waterlevel]/100"
|
|
user << "-Nutrition level: \blue [nutrilevel]/10"
|
|
user << ""
|
|
|
|
else if (istype(O, /obj/item/weapon/reagent_containers/spray/plantbgone))
|
|
if(planted && myseed)
|
|
health -= rand(5,20)
|
|
|
|
if(pestlevel > 0)
|
|
pestlevel -= 2 // Kill kill kill
|
|
else
|
|
pestlevel = 0
|
|
|
|
if(weedlevel > 0)
|
|
weedlevel -= 3 // Kill kill kill
|
|
else
|
|
weedlevel = 0
|
|
toxic += 4 // Oops
|
|
visible_message("\red <B>\The [src] has been sprayed with \the [O][(user ? " by [user]." : ".")]")
|
|
playsound(loc, 'sound/effects/spray3.ogg', 50, 1, -6)
|
|
updateicon()
|
|
|
|
else if (istype(O, /obj/item/weapon/minihoe)) // The minihoe
|
|
//var/deweeding
|
|
if(weedlevel > 0)
|
|
user.visible_message("\red [user] starts uprooting the weeds.", "\red You remove the weeds from the [src].")
|
|
weedlevel = 0
|
|
updateicon()
|
|
else
|
|
user << "\red This plot is completely devoid of weeds. It doesn't need uprooting."
|
|
|
|
else if ( istype(O, /obj/item/weapon/weedspray) )
|
|
var/obj/item/weedkiller/myWKiller = O
|
|
user.u_equip(O)
|
|
toxic += myWKiller.toxicity
|
|
weedlevel -= myWKiller.WeedKillStr
|
|
if (weedlevel < 0 ) // Make sure it won't go overoboard
|
|
weedlevel = 0
|
|
if (toxic > 100 ) // Make sure it won't go overoboard
|
|
toxic = 100
|
|
user << "You apply the weedkiller solution into the [src]."
|
|
playsound(loc, 'sound/effects/spray3.ogg', 50, 1, -6)
|
|
del(O)
|
|
updateicon()
|
|
|
|
else if (istype(O, /obj/item/weapon/plantbag))
|
|
attack_hand(user)
|
|
var/obj/item/weapon/plantbag/S = O
|
|
for (var/obj/item/weapon/reagent_containers/food/snacks/grown/G in locate(user.x,user.y,user.z))
|
|
if (S.contents.len < S.capacity)
|
|
S.contents += G;
|
|
else
|
|
user << "\blue The plant bag is full."
|
|
return
|
|
|
|
else if ( istype(O, /obj/item/weapon/pestspray) )
|
|
var/obj/item/pestkiller/myPKiller = O
|
|
user.u_equip(O)
|
|
toxic += myPKiller.toxicity
|
|
pestlevel -= myPKiller.PestKillStr
|
|
if (pestlevel < 0 ) // Make sure it won't go overoboard
|
|
pestlevel = 0
|
|
if (toxic > 100 ) // Make sure it won't go overoboard
|
|
toxic = 100
|
|
user << "You apply the pestkiller solution into the [src]."
|
|
playsound(loc, 'sound/effects/spray3.ogg', 50, 1, -6)
|
|
del(O)
|
|
updateicon()
|
|
else if(istype(O, /obj/item/weapon/wrench))
|
|
playsound(loc, 'sound/items/Ratchet.ogg', 50, 1)
|
|
anchored = !anchored
|
|
user << "You [anchored ? "wrench" : "unwrench"] \the [src]."
|
|
else if(istype(O, /obj/item/weapon/shovel))
|
|
if(istype(src, /obj/machinery/hydroponics/soil))
|
|
user << "You clear up the [src]!"
|
|
del(src)
|
|
return
|
|
|
|
|
|
/obj/machinery/hydroponics/attack_hand(mob/user as mob)
|
|
if(istype(usr,/mob/living/silicon)) //How does AI know what plant is?
|
|
return
|
|
if(harvest)
|
|
if(!user in range(1,src))
|
|
return
|
|
myseed.harvest()
|
|
else if(dead)
|
|
planted = 0
|
|
dead = 0
|
|
usr << text("You remove the dead plant from the [src].")
|
|
del(myseed)
|
|
updateicon()
|
|
else
|
|
if(planted && !dead)
|
|
usr << text("The [src] has \blue [myseed.plantname] \black planted.")
|
|
if(health <= (myseed.endurance / 2))
|
|
usr << text("The plant looks unhealthy")
|
|
else
|
|
usr << text("The [src] is empty.")
|
|
usr << text("Water: [waterlevel]/100")
|
|
usr << text("Nutrient: [nutrilevel]/10")
|
|
if(weedlevel >= 5) // Visual aid for those blind
|
|
usr << text("The [src] is filled with weeds!")
|
|
if(pestlevel >= 5) // Visual aid for those blind
|
|
usr << text("The [src] is filled with tiny worms!")
|
|
usr << text ("") // Empty line for readability.
|
|
|
|
/obj/item/seeds/proc/harvest(mob/user = usr)
|
|
var/produce = text2path(productname)
|
|
var/obj/machinery/hydroponics/parent = loc //for ease of access
|
|
var/t_amount = 0
|
|
|
|
while ( t_amount < (yield * parent.yieldmod ))
|
|
var/obj/item/weapon/reagent_containers/food/snacks/grown/t_prod = new produce(user.loc, potency) // User gets a consumable
|
|
if(!t_prod) return
|
|
t_prod.seed = mypath
|
|
t_prod.species = species
|
|
t_prod.lifespan = lifespan
|
|
t_prod.endurance = endurance
|
|
t_prod.maturation = maturation
|
|
t_prod.production = production
|
|
t_prod.yield = yield
|
|
t_prod.potency = potency
|
|
t_prod.plant_type = plant_type
|
|
t_amount++
|
|
|
|
parent.update_tray()
|
|
|
|
/obj/item/seeds/gibtomato/harvest(mob/user = usr)
|
|
var/produce = text2path(productname)
|
|
var/obj/machinery/hydroponics/parent = loc //for ease of access
|
|
var/t_amount = 0
|
|
|
|
while ( t_amount < (yield * parent.yieldmod ))
|
|
var/obj/item/weapon/reagent_containers/food/snacks/grown/t_prod = new produce(user.loc, potency) // User gets a consumable
|
|
|
|
t_prod.seed = mypath
|
|
t_prod.species = species
|
|
t_prod.lifespan = lifespan
|
|
t_prod.endurance = endurance
|
|
t_prod.maturation = maturation
|
|
t_prod.production = production
|
|
t_prod.yield = yield
|
|
t_prod.potency = potency
|
|
t_prod.plant_type = plant_type
|
|
t_amount++
|
|
|
|
parent.update_tray()
|
|
|
|
/obj/item/seeds/nettleseed/harvest(mob/user = usr)
|
|
var/produce = text2path(productname)
|
|
var/obj/machinery/hydroponics/parent = loc //for ease of access
|
|
var/t_amount = 0
|
|
|
|
while ( t_amount < (yield * parent.yieldmod ))
|
|
var/obj/item/weapon/grown/t_prod = new produce(user.loc, potency) // User gets a consumable -QualityVan
|
|
t_prod.seed = mypath
|
|
t_prod.species = species
|
|
t_prod.lifespan = lifespan
|
|
t_prod.endurance = endurance
|
|
t_prod.maturation = maturation
|
|
t_prod.production = production
|
|
t_prod.yield = yield
|
|
t_prod.changePotency(potency) // -QualityVan
|
|
t_prod.plant_type = plant_type
|
|
t_amount++
|
|
|
|
parent.update_tray()
|
|
|
|
/obj/item/seeds/deathnettleseed/harvest(mob/user = usr) //isn't a nettle subclass yet, so
|
|
var/produce = text2path(productname)
|
|
var/obj/machinery/hydroponics/parent = loc //for ease of access
|
|
var/t_amount = 0
|
|
|
|
while ( t_amount < (yield * parent.yieldmod ))
|
|
var/obj/item/weapon/grown/t_prod = new produce(user.loc, potency) // User gets a consumable -QualityVan
|
|
t_prod.seed = mypath
|
|
t_prod.species = species
|
|
t_prod.lifespan = lifespan
|
|
t_prod.endurance = endurance
|
|
t_prod.maturation = maturation
|
|
t_prod.production = production
|
|
t_prod.yield = yield
|
|
t_prod.changePotency(potency) // -QualityVan
|
|
t_prod.plant_type = plant_type
|
|
t_amount++
|
|
|
|
parent.update_tray()
|
|
|
|
/obj/item/seeds/eggyseed/harvest(mob/user = usr)
|
|
var/produce = text2path(productname)
|
|
var/obj/machinery/hydroponics/parent = loc //for ease of access
|
|
var/t_amount = 0
|
|
|
|
while ( t_amount < (yield * parent.yieldmod ))
|
|
new produce(user.loc)
|
|
t_amount++
|
|
|
|
parent.update_tray()
|
|
|
|
/obj/item/seeds/replicapod/harvest(mob/user = usr) //now that one is fun -- Urist
|
|
var/obj/machinery/hydroponics/parent = loc
|
|
var/make_podman = 0
|
|
var/mob/ghost
|
|
if(ckey && config.revival_pod_plants)
|
|
ghost = find_dead_player("[ckey]")
|
|
if(ismob(ghost))
|
|
if(istype(ghost,/mob/dead/observer))
|
|
var/mob/dead/observer/O = ghost
|
|
if(istype(mind,/datum/mind))
|
|
if(O.can_reenter_corpse)
|
|
make_podman = 1
|
|
else
|
|
make_podman = 1
|
|
|
|
if(make_podman) //all conditions met!
|
|
var/mob/living/carbon/human/podman = new /mob/living/carbon/human(parent.loc)
|
|
if(realName)
|
|
podman.real_name = realName
|
|
else
|
|
podman.real_name = "Pod Person [rand(0,999)]"
|
|
var/oldactive = mind.active
|
|
mind.active = 1
|
|
mind.transfer_to(podman)
|
|
mind.active = oldactive
|
|
// -- Mode/mind specific stuff goes here. TODO! Broken :( Should be merged into mob/living/Login
|
|
switch(ticker.mode.name)
|
|
if ("revolution")
|
|
if (podman.mind in ticker.mode:revolutionaries)
|
|
ticker.mode:add_revolutionary(podman.mind)
|
|
ticker.mode:update_all_rev_icons() //So the icon actually appears
|
|
if (podman.mind in ticker.mode:head_revolutionaries)
|
|
ticker.mode:update_all_rev_icons()
|
|
if ("nuclear emergency")
|
|
if (podman.mind in ticker.mode:syndicates)
|
|
ticker.mode:update_all_synd_icons()
|
|
if ("cult")
|
|
if (podman.mind in ticker.mode:cult)
|
|
ticker.mode:add_cultist(podman.mind)
|
|
ticker.mode:update_all_cult_icons() //So the icon actually appears
|
|
|
|
// -- End mode specific stuff
|
|
|
|
podman.gender = ghost.gender
|
|
if(podman.gender in list(NEUTER, PLURAL)) //Sanity check, which should never actually happen.
|
|
podman.gender = pick(MALE,FEMALE)
|
|
|
|
if(!podman.dna)
|
|
podman.dna = new /datum/dna()
|
|
podman.dna.real_name = podman.real_name
|
|
if(ui)
|
|
podman.dna.uni_identity = ui
|
|
updateappearance(podman, ui)
|
|
if(se)
|
|
podman.dna.struc_enzymes = se
|
|
if(!prob(potency)) //if it fails, plantman!
|
|
if(podman)
|
|
// podman.dna.mutantrace = "plant"
|
|
podman.mutations.Add(PLANT)
|
|
podman.update_mutantrace()
|
|
|
|
else //else, one packet of seeds. maybe two
|
|
var/seed_count = 1
|
|
if(prob(yield * parent.yieldmod * 20))
|
|
seed_count++
|
|
for(var/i=0,i<seed_count,i++)
|
|
var/obj/item/seeds/replicapod/harvestseeds = new /obj/item/seeds/replicapod(user.loc)
|
|
harvestseeds.lifespan = lifespan
|
|
harvestseeds.endurance = endurance
|
|
harvestseeds.maturation = maturation
|
|
harvestseeds.production = production
|
|
harvestseeds.yield = yield
|
|
harvestseeds.potency = potency
|
|
|
|
parent.update_tray()
|
|
|
|
/obj/item/seeds/replicapod/attackby(obj/item/weapon/W as obj, mob/user as mob)
|
|
if(istype(W,/obj/item/weapon/reagent_containers))
|
|
|
|
user << "You inject the contents of the syringe into the seeds."
|
|
|
|
for(var/datum/reagent/blood/bloodSample in W:reagents.reagent_list)
|
|
var/mob/living/carbon/human/source = bloodSample.data["donor"] //hacky, since it gets the CURRENT condition of the mob, not how it was when the blood sample was taken
|
|
if (!istype(source))
|
|
continue
|
|
//ui = bloodSample.data["blood_dna"] doesn't work for whatever reason
|
|
ui = source.dna.uni_identity
|
|
se = source.dna.struc_enzymes
|
|
if(source.ckey)
|
|
ckey = source.ckey
|
|
else if(source.mind)
|
|
ckey = ckey(source.mind.key)
|
|
realName = source.real_name
|
|
gender = source.gender
|
|
|
|
if (!isnull(source.mind))
|
|
mind = source.mind
|
|
|
|
W:reagents.clear_reagents()
|
|
else
|
|
return ..()
|
|
|
|
/obj/machinery/hydroponics/proc/update_tray(mob/user = usr)
|
|
harvest = 0
|
|
lastproduce = age
|
|
if((yieldmod * myseed.yield) <= 0)
|
|
user << text("\red You fail to harvest anything useful.")
|
|
else
|
|
user << text("You harvest from the [myseed.plantname]")
|
|
if(myseed.oneharvest)
|
|
del(myseed)
|
|
planted = 0
|
|
dead = 0
|
|
updateicon()
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
/obj/machinery/hydroponics/soil //Not actually hydroponics at all! Honk!
|
|
name = "soil"
|
|
icon = 'icons/obj/hydroponics.dmi'
|
|
icon_state = "soil"
|
|
density = 0
|
|
New()
|
|
..()
|
|
updateicon() // Same as normal but with the overlays removed - Cheridan.
|
|
overlays = null
|
|
if(planted)
|
|
if(dead)
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-dead")
|
|
else if(harvest)
|
|
if(myseed.plant_type == 2) // Shrooms don't have a -harvest graphic
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-grow[myseed.growthstages]")
|
|
else
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-harvest")
|
|
else if(age < myseed.maturation)
|
|
var/t_growthstate = ((age / myseed.maturation) * myseed.growthstages )
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-grow[round(t_growthstate)]")
|
|
lastproduce = age
|
|
else
|
|
overlays += image('icons/obj/hydroponics.dmi', icon_state="[myseed.species]-grow[myseed.growthstages]")
|
|
|
|
if(!luminosity)
|
|
if(istype(myseed,/obj/item/seeds/glowshroom))
|
|
SetLuminosity(round(myseed.potency/10))
|
|
else
|
|
SetLuminosity(0)
|
|
return |