diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm index 1095e60e..e203bc94 100644 --- a/code/modules/reagents/chemistry/reagents/food_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm @@ -604,21 +604,23 @@ ..() /datum/reagent/consumable/honey - name = "honey" + name = "Honey" id = "honey" description = "Sweet sweet honey that decays into sugar. Has antibacterial and natural healing properties." color = "#d3a308" nutriment_factor = 15 * REAGENTS_METABOLISM metabolization_rate = 1 * REAGENTS_METABOLISM taste_description = "sweetness" + var/power = 0 /datum/reagent/consumable/honey/on_mob_life(mob/living/carbon/M) - M.reagents.add_reagent("sugar",3) + if(power == 0) + M.reagents.add_reagent(/datum/reagent/consumable/sugar,3) if(prob(55)) - M.adjustBruteLoss(-1*REM, 0) - M.adjustFireLoss(-1*REM, 0) - M.adjustOxyLoss(-1*REM, 0) - M.adjustToxLoss(-1*REM, 0) + M.adjustBruteLoss(-1*REM+power, 0) + M.adjustFireLoss(-1*REM+power, 0) + M.adjustOxyLoss(-1*REM+power, 0) + M.adjustToxLoss(-1*REM+power, 0) ..() /datum/reagent/consumable/honey/reaction_mob(mob/living/M, method=TOUCH, reac_volume) @@ -629,6 +631,12 @@ S.success_multiplier = max(0.6, S.success_multiplier) // +60% success probability on each step, compared to bacchus' blessing's ~46% ..() +/datum/reagent/consumable/honey/special + name = "Royal Honey" + id = "royalhoney" + description = "A special honey which heals the imbiber far faster than normal honey" + power = 1 + /datum/reagent/consumable/mayonnaise name = "Mayonnaise" id = "mayonnaise"