From 3754ea65975b5cb4aae800aa17a671147a609899 Mon Sep 17 00:00:00 2001 From: 4Donic <4Donic@gmail.com> Date: Fri, 14 Feb 2025 11:46:16 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=D0=9D=D0=B5=D0=B1=D0=BE=D0=BB=D1=8C=D1=88?= =?UTF-8?q?=D0=BE=D0=B9=20=D1=80=D0=B5=D0=B2=D0=BE=D1=80=D0=BA=20=D0=BD?= =?UTF-8?q?=D0=B0=D0=B2=D1=8B=D0=BA=D0=B0=20=D1=87=D1=83=D0=B4=D0=B5=D1=81?= =?UTF-8?q?=20(#58)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Pestran Orison, Priest runtime stuff? * AzurePeak-esque lesser heal. Tiny Abyssor healing buff. * small devotion rework, miracles leveling up * oops --- code/controllers/subsystem/rogue/devotion.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/rogue/devotion.dm b/code/controllers/subsystem/rogue/devotion.dm index 2f3f96568dd..f4751666c73 100644 --- a/code/controllers/subsystem/rogue/devotion.dm +++ b/code/controllers/subsystem/rogue/devotion.dm @@ -33,7 +33,7 @@ /// How much progression is gained per process call var/passive_progression_gain = 0 /// How much devotion is gained per prayer cycle - var/prayer_effectiveness = 3 + var/prayer_effectiveness = 2 /// Spells we have granted thus far var/list/granted_spells @@ -65,6 +65,7 @@ return TRUE /datum/devotion/proc/update_devotion(dev_amt, prog_amt, silent = FALSE) + max_devotion = holder.mind.get_skill_level(/datum/skill/magic/holy) * 200 devotion = clamp(devotion + dev_amt, 0, max_devotion) //Max devotion limit if((devotion >= max_devotion) && !silent) @@ -221,12 +222,13 @@ break if(!do_after(src, 30)) break - var/devotion_multiplier = 1 + var/devotion_multiplier = mind.get_skill_level(/datum/skill/magic/holy) if(mind) devotion_multiplier += (mind.get_skill_level(/datum/skill/magic/holy) / SKILL_LEVEL_LEGENDARY) var/prayer_effectiveness = round(devotion.prayer_effectiveness * devotion_multiplier) devotion.update_devotion(prayer_effectiveness, prayer_effectiveness) prayersesh += prayer_effectiveness + add_sleep_experience(usr, /datum/skill/magic/holy, prayer_effectiveness) visible_message("[src] concludes their prayer.", "I conclude my prayer.") to_chat(src, "I gained [prayersesh] devotion!") return TRUE From f672c14fcb8c5b10f7e3e0c2902952dfdc26f7f3 Mon Sep 17 00:00:00 2001 From: 4Donic <4Donic@gmail.com> Date: Fri, 14 Feb 2025 11:46:28 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=D0=9A=D0=BE=D0=B6=D0=B0=D0=BD=D0=BD=D1=8B?= =?UTF-8?q?=D0=B9=20(=D0=BA=D1=83=D0=B7=D0=BD=D0=B5=D1=87=D0=BD=D1=8B?= =?UTF-8?q?=D0=B9)=20=D1=84=D0=B0=D1=80=D1=82=D1=83=D0=BA=20=D0=B2=20?= =?UTF-8?q?=D0=BB=D0=BE=D0=B4=D0=B0=D1=83=D1=82.=20=20(#59)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Дождевой плащик для Лодаута * Фиксы табуляции * Leather Apron into loadout --- modular_redmoon/code/datums/loadout.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modular_redmoon/code/datums/loadout.dm b/modular_redmoon/code/datums/loadout.dm index 931c2ae17bc..95e25ad5fa6 100644 --- a/modular_redmoon/code/datums/loadout.dm +++ b/modular_redmoon/code/datums/loadout.dm @@ -68,6 +68,10 @@ GLOBAL_LIST_EMPTY(loadout_items) desc = "Ебать. Плащ." path = /obj/item/clothing/cloak/raincloak +/datum/loadout_item/raincloak/apron/blacksmith + name = "Leather Apron" + desc = "Ебать. Фартук." + path = /obj/item/clothing/cloak/apron/blacksmith //SHOES /datum/loadout_item/darkboots